Hello,
Unless you own the LabVIEW Base Package, you have a VI named FFT (Fast Fourrier Transform) that enables to compute a Discrete Fourier Transform.
DFT (Discrete Fourier Transform) is simply the name given to the Fourier Transform when it is applied to digital (discrete) rather than an analog (continuous) signal. An FFT (Fast Fourier Transform) is a faster version of the DFT that can be applied when the number of samples in the signal is a power of two. An FFT computation takes approximately N * log2(N) operations, whereas a DFT takes approximately N2 operations, so the FFT is significantly faster.
The FFT VI is a polymorpic VI that enables to compute FFT on 2D arrays.
Regards,