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 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!