two function convolution with matlab
Ältere Kommentare anzeigen
x(t)=sint, 0<t<pi,
h(t)=1/2, 0<t<2*pi,
Δt=0.05;
convolution x(t) and h(t)
Antworten (1)
Image Analyst
am 3 Mai 2014
Do you have a question? Why not look up conv()? Hint:
t = 0 : 0.05 : pi; % For x -- make it 2*pi when you go to computer h.
2 Kommentare
Ellen
am 6 Mai 2014
Image Analyst
am 6 Mai 2014
I don't know what that means. Did you do
out = conv(x,h)
??
Kategorien
Mehr zu Correlation and Convolution finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!