一蓑烟雨 发表于 2012-10-31 00:14

matlab图像出现错误

clear;close all;
Nx=20;Nh=10;m=5; %设定 Nx,Nh和位移值m
n=0:Nx-1;
x1=(0.9).^n;%产生x1(n)
x2=zeros(1,Nx+m);
for k=m+1:m+Nx
    x2(k)=x1(k-m);
end
nh=0:Nh-1;h1=ones(1,Nh);%产生h1(n)
h2=h1;
y1=conv(x1,h1);%计算y1(n)=x1(n)*h1(n)
y2=conv(x2,h2);%计算y2(n)=x2(n)*h2(n)
subplot(3,2,1);stem(n,x1,'.');
xlabel('n');ylabel('x1(n)');
axis();
subplot(3,2,3);stem(nh,h1,'.');
xlabel('n');ylabel('h1(n)');
axis();
subplot(3,2,5);stem(n,y1,'.');
xlabel('n');ylabel('y1(n)');
axis();
subplot(3,2,2);stem(n,x2,'.');
xlabel('n');ylabel('x2(n)');
axis();
subplot(3,2,4);stem(nh,h2,'.');
xlabel('nh');ylabel('h2(n)');
axis();
subplot(3,2,6);stem(n,y2,'.');
xlabel('n');ylabel('y2(n)');
axis();

happy 发表于 2012-11-30 10:04

m=5;分号应该是半角的subplot(3,2,5);stem(n,y1,'.');n和y1的长度不一致

后续错误类似

一蓑烟雨 发表于 2012-11-30 18:17

happy 发表于 2012-11-30 10:04 static/image/common/back.gif
分号应该是半角的n和y1的长度不一致

后续错误类似

谢谢楼主的回复,

chengjinm 发表于 2012-12-4 17:43

错误提示是啥呀,要善于看那个
页: [1]
查看完整版本: matlab图像出现错误