Tuesday, 14 March 2017

Fast Fourier Transform

Fast Fourier Transform(FFT) has less number of addition and multiplication.Therefore,it is faster than Discrete fourier Transform (DFT).Cooley and Tuckey's radix-2 Decimation In Time Fast Fourier Transform ( DITFFT)  was performed,where the term decimation means nothing but sampling.
The FFT algorithm divides the N point signal into 2 parts i.e even and odd.Decomposition reduces the calculation.FFT of 4 point and 8 point sequences was calculated using radix 2 algorithm.Bit reversal technique was observed.

10 comments:

  1. What does radix 2 algorithm mean ?

    ReplyDelete
    Replies
    1. Radix 2 means that the number of samples must be an integral power of two.
      Thank you

      Delete
    2. FFT involves decimation..therefore it would reduce calculation when compared to DFT.

      Delete
  2. Because of parallel processing FFT is more faster than DFT

    ReplyDelete
  3. FFT is like sample part of DFT

    ReplyDelete
  4. FFT is implemented by radix based sampling

    ReplyDelete