Monday, 13 March 2017

Lab No.3: Fast Fourier Transform

FFT method is different than DFT method. In FFT method the input signal is broken into parts according to the Radix-2 algorithm. The input sequence order and the output sequence order in Radix-2 algorithm is in bit reverse manner.
By performing the experiments, we counted the number of steps that were required to perform the FFT. The result was that the steps required for FFT were much less than that of DFT.
Thus, FFT is computationally a fast method.

11 comments:

  1. This comment has been removed by a blog administrator.

    ReplyDelete
  2. FFT is computationally faster than DFT

    ReplyDelete
  3. Bit reversal is inolved in FFT

    ReplyDelete
  4. How is FFT faster than DFT?

    ReplyDelete
  5. FFT 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.

    ReplyDelete
  6. Because of parallel processing FFT is more faster than DFT

    ReplyDelete
  7. Number of computations in FFT is less than that of DFT. This makes FFT computationally faster.

    ReplyDelete
  8. the signal is divided into 2 parts, so the computation is carried out only for N/2 signal values

    ReplyDelete

Lab No.10: Signal Processing Application

The Morse code is a simple and versatile technique for sending of text messages, mainly using wireless media. The Morse communication was u...