Public Member Functions | |
Complex[] | DFT (Complex[] a) |
Discrete Fourier Transform. | |
Complex[] | InverseDFT (Complex[] y) |
Inverse Discrete Fourier Transform. | |
string | ToString () |
Name of the DFT algorithm. |
This interface specifies two functions:
For ease of implementation the n can be assumed to be a power of 2.
Definition at line 26 of file IDFT.cs.
Discrete Fourier Transform.
a | table whos length is a power of 2. |
Implemented in IterativeFFT, RecursiveFFT, and MockDFT.
Inverse Discrete Fourier Transform.
y | table whos length is a power of 2. |
Implemented in IterativeFFT, RecursiveFFT, and MockDFT.
string ToString | ( | ) |