Monday, 13 March 2017

Filtering of Long Data Sequences

Practical signals are very long. Simple FFT and multiplication are not enough. So, we have to develop additional methods to filter or analyse such signals. Two of the standard methods used are Overlap Add Method (OAM) and Overlap Save Method (OSM). Both of these are block processing techniques. Meaning that the input sequence is divided into blocks and the operations are carried out on these blocks.
Using C programming, we implemented both the methods. A FIR filter was assumed, to which input was given. OAM uses linear convolution. In the program, FFT was used to calculate the linear convolution using circular convolution. In OSM, circular was calculated, again with the help of FFT. These blocks can then be processed in real time.

7 comments:

  1. The OAM and OSM are types of linear filtering method.

    ReplyDelete
  2. OSM and OAM methods are useful for long sequence input signal.

    ReplyDelete
  3. These techniques are suitable for real time signal processing

    ReplyDelete
  4. These techniques are used to design FIR filters

    ReplyDelete