Convolution
Convolution
Convolution
Convolution is a vital used concept in signals and communication. You have to implement the
concept of Convolution in MATLAB without directly using the in-built function. Plot the two input
signals and the resultant/convoluted signal and attach the screenshot in your write-up. Put the
screenshot of your code in the write-up. No need to submit a MATLAB file.
Let us say you have two signals, A and B, in the form of the matrix.
A= [ 1 2 3 ]
B= [ 4 5 6 ]
So, we represent the convolution of these as A * B. Let us say the convoluted signal is Y.
Let the Y be [ y1 y2 y3 y4 y5 ]
y5= b3*a3
so, as a result Y = [ 4 13 28 27 18 ]
You can go through some basic kinds of stuff on the internet related to Discrete-time Convolution to
implement this project.