how to find convolution between two functions??
조회 수: 4 (최근 30일)
이전 댓글 표시
I have this to function.. how to find the convolution of this two function and plot the graph??
댓글 수: 0
채택된 답변
Image Analyst
2015년 5월 17일
output = conv(x, h, 'full');
plot(output, 'b*-');
grid on;
댓글 수: 2
Image Analyst
2015년 5월 18일
I think that's well within your capabilities. Just pick a max value for n. Any beginner would know
x = 1:n;
x(n+1:nMax) = 0;
It's pretty similar for h so I'm sure you can get it.
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!