Skip to main content

Overlap Add Method (OAM) and Overlap Save Method (OSM)

Programming the codes of this experiment was confusing and time-consuming as it involved manipulations in the various signal lengths of inputs, decomposed inputs, decomposed outputs and the final result. This had me referring the class notes and online resources, again and again, to make changes in the code and finally, the result was satisfactory. Also, many of my concepts were strengthened and overall it was a great programming assignment!

Comments

  1. Real-time signals need to be processed using these techniques because processing is done as the signal is applied continuously.

    ReplyDelete
  2. The programs provided are well designed, good job!

    ReplyDelete
  3. Overlap Add and Overlap Save are great techniques for filtering of long data sequences as they provide efficient memory usage breaking long sequences to small blocks which is necessary in digital computers & speedy to process.

    ReplyDelete
  4. What is the difference between the two?

    ReplyDelete
    Replies
    1. Essentially, OS is slightly more efficient since it does not require the addition of the overlapping transients. However, you may want to use OA if you need to reuse the FFTs with zero-padding rather than repeated samples.

      Delete
  5. There may be some optimizations in the way the DFT over the zero-padded portion of the OA buffer is computed, that gives an edge to the OA method. But this would depend on your processor and FFT package.

    ReplyDelete

Post a Comment