Method "ofReal" was removed from the API.

This commit is contained in:
Gilles Sadowski 2019-12-16 13:55:52 +01:00
parent 490223af4a
commit 49f3afd6b8
1 changed files with 1 additions and 1 deletions

View File

@ -301,7 +301,7 @@ public final class FastFourierTransformerTest {
final Complex[] x = new Complex[n];
for (int i = 0; i < n; i++) {
final double t = min + i * (max - min) / n;
x[i] = Complex.ofReal(f.value(t));
x[i] = Complex.ofCartesian(f.value(t), 0);
}
final Complex[] expected;
final double s;