
连载106傅立叶变换的对称性二连载107傅立叶变换的对称性三连载108序列的卷积连载109序列的卷积计算过程连载110利用matlab计算序列的卷积% x(n) subplot(3,1,1); n0:1:6; x[1 1.2 0.8 -0.7 -0.5 0.4 1.4]; stem(n,x); xlabel(n);ylabel(x);title(x(n) ); axis([-12 12 -2.5 2.5]);% h(n) subplot(3,1,2); h[1 0.8 -0.5 -0.3]; n0:1:3; stem(n,h) xlabel(n);ylabel(h);title(h(n) ); axis([-12 12 -2.5 2.5]);% x(n)*h(n) subplot(3,1,3); yconv(x,h); n0:1:9; stem(n,y) xlabel(n);ylabel(y);title(y(n)x(n)*h(n) ); axis([-12 12 -2.5 2.5]);