two function convolution with matlab
显示 更早的评论
x(t)=sint, 0<t<pi,
h(t)=1/2, 0<t<2*pi,
Δt=0.05;
convolution x(t) and h(t)
回答(1 个)
Image Analyst
2014-5-3
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 个评论
Ellen
2014-5-6
Image Analyst
2014-5-6
I don't know what that means. Did you do
out = conv(x,h)
??
类别
在 帮助中心 和 File Exchange 中查找有关 Correlation and Convolution 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!