jingrenzhi 发表于 2007-12-24 11:28

Inner matrix dimensions must agree 出错求助

clc;
fs=512;
N=1024;
t=0:1/fs:N/fs;
x1=cos(2*pi*60*t+sin(2*pi*15*t));
x2=(1+0.4*sin(2*pi*10*t))*sin(2*pi*200*t);
x=x1+x2;
plot(x,t);

??? Error using ==> mtimes
Inner matrix dimensions must agree.

Error in ==> myemdlizi2 at 6
x2=(1+0.4*sin(2*pi*10*t))*sin(2*pi*200*t);

[ 本帖最后由 eight 于 2007-12-24 11:30 编辑 ]

eight 发表于 2007-12-24 11:30

原帖由 jingrenzhi 于 2007-12-24 11:28 发表 http://www.chinavib.com/forum/images/common/back.gif
clc;
fs=512;
N=1024;
t=0:1/fs:N/fs;
x1=cos(2*pi*60*t+sin(2*pi*15*t));
x2=(1+0.4*sin(2*pi*10*t))*sin(2*pi*200*t);
x=x1+x2;
plot(x,t);

??? Error using ==> mtimes
Inner matrix dimensions...
注意点运算与矩阵运算的区别,请在置顶帖中找答案。注意:你已经不是新手了,希望养成发帖前,先自己动手的习惯,你这个问题实在讨论得太多了,而且置顶帖中有出错问题整理,也有for 新手的精华帖,自己好好阅读一下

[ 本帖最后由 eight 于 2007-12-24 11:31 编辑 ]

jingrenzhi 发表于 2007-12-24 11:37

谢谢
页: [1]
查看完整版本: Inner matrix dimensions must agree 出错求助