%线性卷积conv(h,w)
%反转  平移    相乘   相加
x=[3,11,7,0,-1,4,2];
h=[2,3,0,-5,2,1];
y = conv(x,h)
subplot(3,1,1)
stem(x);
title(\'序列x\')
xlabel(\'n\')
ylabel(\'幅度\')
subplot(3,1,2)
stem(h);
title(\'序列h\')
xlabel(\'n\')
ylabel(\'幅度\')
subplot(3,1,3)
stem(y);
title(\'序列的卷积和\')
xlabel(\'n\')
ylabel(\'幅度\')

就是错位相乘相加

 

版权声明:本文为Crown-V原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/Crown-V/articles/10660166.html