The length of X must match the number of rows of Yx=[3 11 7 0 -1 4 2];nx=[-3:3];h=[2 3 0 -5 2 1];nh=[-1:4];[y,ny]=conv_m(x,nx,h,nh);subplot(311);stem(nx,x);axis([-4,7,-20,20]);subplot(312);stem(nh,h);axis([-4,7,-10,10]);subplot(313);stem(ny,y)axis([-
来源:学生作业帮助网 编辑:作业帮 时间:2024/11/15 15:41:58
The length of X must match the number of rows of Yx=[3 11 7 0 -1 4 2];nx=[-3:3];h=[2 3 0 -5 2 1];nh=[-1:4];[y,ny]=conv_m(x,nx,h,nh);subplot(311);stem(nx,x);axis([-4,7,-20,20]);subplot(312);stem(nh,h);axis([-4,7,-10,10]);subplot(313);stem(ny,y)axis([-
The length of X must match the number of rows of Y
x=[3 11 7 0 -1 4 2];
nx=[-3:3];
h=[2 3 0 -5 2 1];
nh=[-1:4];
[y,ny]=conv_m(x,nx,h,nh);
subplot(311);
stem(nx,x);
axis([-4,7,-20,20]);
subplot(312);
stem(nh,h);
axis([-4,7,-10,10]);
subplot(313);
stem(ny,y)
axis([-4,7,-20,20]);
第三个图出不来,如标题
The length of X must match the number of rows of Yx=[3 11 7 0 -1 4 2];nx=[-3:3];h=[2 3 0 -5 2 1];nh=[-1:4];[y,ny]=conv_m(x,nx,h,nh);subplot(311);stem(nx,x);axis([-4,7,-20,20]);subplot(312);stem(nh,h);axis([-4,7,-10,10]);subplot(313);stem(ny,y)axis([-
矩阵相乘?前一个的列数要等于后一个的行数?