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!