Fast Fourier Transform
Just like DFT, FFT is also used to find the frequency representation of a discrete time signal.
The result of FFT is same as that of DFT. But FFT is computationally fast as it uses Cooley and Tuckey's algorithm to find the result. FFT does parallel processing of the input sequence as it decomposes an N point sequence into two sequences i.e. even and odd signals.
In this experiment, FFT of 4 point and 8 point signals was calculated using DITFFT. Comparison of no. of complex addition and multiplications as well as real addition and multiplications required to calculate FFT and DFT prove that FFT is fast.
Good explanation
ReplyDeleteAdopting fast methods is essential for systems
ReplyDeleteFFT enhances fast large integer and polynomial multiplication
ReplyDeleteFFT of radix 2 divides the input into two N/2 pt DFT's. Similarly N/2 is divided into two N/4 sequences, decreasing the computations required, making it faster.
ReplyDeleteThe two types of FFT : 1) DITFFT
ReplyDelete2)DIFFFT are equally efficient.