Add tests for ConvolutionFFT (#5767)

This commit is contained in:
Hardik Pawar
2024-10-15 17:11:26 +05:30
committed by GitHub
parent f1aceea732
commit 9eff71bf05
3 changed files with 64 additions and 0 deletions

View File

@ -165,6 +165,14 @@ public final class FFT {
temp.img = this.img / n;
return temp;
}
public double real() {
return real;
}
public double imaginary() {
return img;
}
}
/**