Wednesday, 15 March 2017

Filtering of long data sequences

Overlap Add Method(OAM) and Overlap Save Method(OSM) are used to calculate linear convolution. These are especially efficient when the length of input sequence is large as is the case with practical real time systems. These are block processing techniques that means the input sequence is divided into blocks of suitable length and convolution of each block is found out. The output is then computed by adding the overlapping portion in OAM and discarding the overlapping portion in OSM. Output using both the techniques is same and this was verified through code.

8 comments:

  1. Replies
    1. OAM requires memory to store the previous computational values. OSM requires no addition of transients, making it faster than OAM .Thus OSM uses less memory as the values are discarded.

      Delete
  2. These methods can be used in FIR filters

    ReplyDelete
  3. Why is it called as block transfer technique?

    ReplyDelete
  4. It convolutes signal with transfer function block by block from the given input signal

    ReplyDelete
  5. Oam and osm cannot be used to find o/p of IIR filter

    ReplyDelete
  6. FIR filters are designed using this method

    ReplyDelete