其他分享
首页 > 其他分享> > 3.序列的卷积和

3.序列的卷积和

作者:互联网

题目:已知两序列如下
-3$\leqslant$x$\leqslant$3 时,x(n) = {3,11,7,0,-1,4,2};其他n,x(n)=0;
-1$\leqslant$x$\leqslant$4 时,h(n) = {2,3,0,-5,2,1};其他n,h(n)=0;
求两序列的卷积和:y(n) = x(n) * h(n)
x=[3,11,7,0,-1,4,2];%序列的幅度
nx=[-3:1:3];%x的时间序列

h=[2,3,0,-5,2,1];
nh=[-1:1:4];

y=conv(x,h);%求卷积序列y的幅度
n1=nx(1)+nh(1);%求卷积序列y的起始位置
n2=length(nx)+length(nh)-1;%求卷积序列y的长度
ny=[n1:1:n2+n1-1];%求卷积序列y的时间序列,减去n1所占得一个长度
stem(ny,y,'.');
grid on

标签:nh,卷积,nx,序列,n1,leqslant
来源: https://www.cnblogs.com/helloszy/p/15455881.html