Overlap Add Method and Overlap Save Method
We use overlap add method(OAM) and overlap save method(OSM) when input signal x(n) is given to digital FIR filter.OAM and OSM are linear filtering methods.In this practical,a 13 point input sequence is taken and output is found out using C program using OAM and OSM for same input sequence.The outputs obtained using both the methods are same.
In OAM method,input sequence is decomposed and then linear convolution is performed on these signals individually.The outputs obtained are then combined together and displayed.In OSM the signals are decomposed and then circular convolution is performed.The input is decomposed in OSM in such a way that there are some value from previous sequence.The outputs obtained are then combined inbto a single sequence by removing the repeated number of values.In this practical,x(n) was a 13 point sequence and h(n) was 4 point sequence.