Exp- 4 Filtering of Long Data Sequence using Overlap Add and Overlap Save method


  • Overlap Add and Overlap Save method are used for filtering long data sequences.
  • Such a long data sequence would need a very high order FFT- which is not feasible and the process can only start after we've obtained the entire data sequence which leads to a delay.
  • The long data sequence is broken into smaller parts and performed FFT analysis. It is then fitted with one another, the overlapped portion is discarded in Overlap Save Method whereas it is added in OAM to get required output sequence.

Comments

  1. Why is the overlapped portion discarded in Overlap save method?

    ReplyDelete
    Replies
    1. Since we initially save extra bits. They are discarded in the last stage.

      Delete
  2. This comment has been removed by the author.

    ReplyDelete
    Replies
    1. How do you implement these methods?

      Delete
    2. You can create a system to implement these methods by using C programs

      Delete
  3. Why FFT is performed in smaller parts of the data sequence?

    ReplyDelete
    Replies
    1. High order FFT increases the complexity?

      Delete
  4. Why does long data sequence need a very high order FFT ? Is there any alternative which is more efficient ?

    ReplyDelete
  5. Very high order FFT needed, hence these methods.

    ReplyDelete
  6. Such a simple but elegant solution to deal with not being able to solve higher order FFT.

    ReplyDelete

Post a Comment

Popular posts from this blog

Exp-2 Discrete Fourier Transform

Exp-3 Fast Fourier Transform