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!