Tuesday, 14 March 2017

Fast Fourier Transform

Fast Fourier Transform (FFT) and DFT produces the same results. FFT is considered to be a fastest algorithm as it implements the Decomposition of the input sequence which reduces calculation.One more reason of being faster is that the input is applied in parallel fashion. Radix-2 algorithm was used for implementation of N (length of input signal)=4,8.The output index  is in bit reversal order with that of the input.

12 comments:

  1. Also, it uses decimation, further reducing the calculations.

    ReplyDelete
  2. Also number of computations required are less, thus speed increases.

    ReplyDelete
  3. FFT is fast because of decomposition of input sequence, and this computation is then carried out parallely

    ReplyDelete