mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-06 00:54:32 +08:00
Add tests for ConvolutionFFT
(#5767)
This commit is contained in:
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user