求x(n)和h(n)的卷积,为什么错啊

问题描述:

求x(n)和h(n)的卷积,为什么错啊
n=0:10;
x(n)=sin(n/2);
h(n)=(0.5).^n;
y=conv(x(n),h(n));
subplot(3,1,1),stem(n,x(n),'filled')
subplot(3,1,2),stem(n,h(n),'filled')
subplot(3,1,3),stem(0:length(y)-1,y,'filled')

Matlab的索引必须从1开始,而不是从0开始,这点和C/C++不同哦,也就是要改一下:
x(n+1)=sin(n/2); h(n+1) = (0.5)^n;
后面stem中将x(n)和h(n)改为x(n+1)和h(n+1);
或者将n=0:10改为n=1:11即可