How do I calculate the impulse response?
1 次查看(过去 30 天)
显示 更早的评论
I am having trouble working out how to do this question given to me in an assignment.
Question
Given the following impulse response:
h[1] = 1, h[2] = 3, h[3] = -2, h[4] = NUM(1), h[5] = NUM(2)
load data_for_conv.mat
This is fake data consisting of 100 channels of 200 samples (100 rows x 200 columns).
Plot the data contained in channel NUM in a subplot (Note: how to do this is given in assignment_1_question_5.m) On the next subplot, plot h On the final subplot, plot h*data(NUM,:) (i.e., the convolution of h with data(NUM,:) ).
I can plot the data, but once I sub my channel number in to the equation above for h it doesn't seem to work. Is there something i'm missing?
3 个评论
Image Analyst
2013-10-23
Why did you not heed my answer where 17 hours ago I told you the reason? You didn't read my answer in your prior post either. You couldn't have not seen them. I can just ignore your posts if you don't want to read my answers. Let me know.
回答(1 个)
Image Analyst
2013-10-22
So what didn't work when you tried it? "Doesn't seem to work" is not enough explanation for us to guess what went wrong. Was it that you used brackets in setting up h instead of parentheses? Was it that NUM is a 2 element array sometimes but expected to be a single scalar number at other times? Or both?
2 个评论
Image Analyst
2013-10-23
To recap, use parentheses instead of bracket:
h(1) = 1; % NOT h[1] = 1, which will cause a syntax error.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!