Help with discrete convolution

조회 수: 20 (최근 30일)
iz
iz 2019년 8월 5일
댓글: ANIKET RAJAPURE 2022년 8월 6일
Hi,
I need help with compute convolution between z1 and z2. I don't know how to define the functions(start from 0).
z1=U[n]-U[n-5] (z1= 1 for n=0,1,2,3,4)
z2=delta[n-5]
thank you.
  댓글 수: 2
Guillaume
Guillaume 2019년 8월 5일
" I don't know how to define the functions(start from 0)."
What function?
What is U and what is delta?
Walter Roberson
Walter Roberson 2019년 8월 6일
U[] typically denotes the unit step function.

댓글을 달려면 로그인하십시오.

채택된 답변

Jon
Jon 2019년 8월 6일
This is a good reference that explains discrete convolution specifically using MATLABhttps://www.ling.upenn.edu/courses/cogs501/ImpulseResponse.html
I am not very clear from your description exactly what you are trying to do, however I think your concern is with what terms such as delta(n-2) that would give non-positive indices for n<=2. In this case, you just take advantage of the shift invariance of linear systems. Specifically shift everything by an amount necessary to keep your indices positive, and then when you are done shift the sequences backward.
  댓글 수: 2
iz
iz 2019년 8월 7일
Thank you.
That's was my problem. now i know there isn't negative indexes
ANIKET RAJAPURE
ANIKET RAJAPURE 2022년 8월 6일
Thanks a lot

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jon
Jon 2019년 8월 5일
편집: Jon 2019년 8월 5일
You need to first form two vectors, z1 and z2 where z1 hold the values of your first series, and z2 holds the values of your second series. You can then use the conv function, so for example:
z1 = [1 8 7 2 3 4 5 9 2.3 11] % just made up data for example
z2 = [2 9 22 1.3 9 4 2.8 7 9] % just made up data for example
y = conv(z1,z2)
In my made up example, I just assigned the vectors to some numerical values. You may have a function, or some experimental data that you will use to obtain values that are then assigned to the vectors z1 and z2
  댓글 수: 1
iz
iz 2019년 8월 6일
But how can i use negative x axis values?
I mean if i have the next sequences and i want to do convolution:
‏‏conv.PNG
If i write z1=[1] for example it will get 1 in n=1.
how can i get z=1 at n=-1?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by