We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ac17fa commit 1782259Copy full SHA for 1782259
src/test/java/com/thealgorithms/maths/ConvolutionFFTTest.java
@@ -14,7 +14,7 @@ public class ConvolutionFFTTest {
14
private ArrayList<FFT.Complex> createComplexSignal(double[] values) {
15
ArrayList<FFT.Complex> signal = new ArrayList<>();
16
for (double value : values) {
17
- signal.add(new FFT.Complex(value, 0)); // Real part only
+ signal.add(new FFT.Complex(value, 0));
18
}
19
return signal;
20
0 commit comments