Suppose that I have two signals x[n]={2,4,1} and p[n]={5,1,8} and I want to multiply them.
- How do you do that?
- How different is it from convolving two signals?
I understand that multiplication in one domain is equal to convolution in other domain. How do you choose as to what to use : multiplication or convolution?
Answer
Yes, you are correct. Multiplication in time domain means convolution in frequency domain and vice versa. Multiplying your signals x[n] and y[n] will give an output:
z[n]={2⋅5,4⋅1,1⋅8}={10,4,8}
Remember that this output is in time domain. When you convolve x[n] and y[n], you will get z[n] in time domain as:
z[n]={5⋅2,5⋅4+1⋅2,5⋅1+1⋅4+8⋅2,1⋅1+8⋅4,8⋅1}={10,22,25,33,8}
Just flip one of the signals around zero and start moving right one place at a time. Multiply the corresponding points as you go along. The output has a larger sequence because convolution output has length(x)+length(y)−1 points.
To answer your query about where to use multiplication & convolution, assume you want to pass signal x(n) through filter y(n). The output of the filter z(n) will be convolution of x(n) and y(n).
Now assume that you first converted from time to frequency domain, i.e. X(eiω) and Y(eiω) are frequency domain representation of x(n) and y(n). Now, to find Z(eiω)(output in frequency domain), you have to multiply X(eiω) and Y(eiω). To get the output in time domain i.e. z(n) you have to apply inverse transform.
So that's how you use convolution and multiplication.
No comments:
Post a Comment