How do I calculate the impulse response?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Image Analyst
am 23 Okt. 2013
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.
Antworten (1)
Image Analyst
am 22 Okt. 2013
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 Kommentare
Image Analyst
am 23 Okt. 2013
To recap, use parentheses instead of bracket:
h(1) = 1; % NOT h[1] = 1, which will cause a syntax error.
Siehe auch
Kategorien
Mehr zu Whos finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!