|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
各位老师,请教一下怎么下面这个简单程序,出错;f函数的两个部分分着写就没事,合起来相乘就不可,为什么呢
??? Error using ==> mtimes
Inner matrix dimensions must agree.
Error in ==> L1 at 2
f=cos(2*pi*t)*exp(-t);
程序:
t=0:0.05:4; %建立时间数组
f=cos(2*pi*t)*exp(-t); %建立生成函数
subplot(2,2,1),plot(t,f); %create 2*2 subpicture,and draw line pic
title('plot(t,f)');
subplot(2,2,2),stem(t,f); %create 2*2 subpic ,and draw pulese pic
title('stem(t,f)');
subplot(2,2,3),stairs(t,f); %create 2*2 subpic ,and draw stairs pic
title('stairs(t,f)');
subplot(2,2,4),bar(t,f); %create 2*2 subpic ,and draw bar pic
title('bar(t,f)'); |
|