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!