|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
%
n=1;
while n <=10,
figure('name','阻尼谐振动的合振动轨迹 design by Albert Leung');
phy =0;
while phy <=pi,
fx=1;
fy=n * fx;
t =linspace(0,1,100);
x =20 *sin(2 *pi *fx *t) *exp(-t);
y =20 *sin(2 *pi *fy *t+phy) *exp(-t);
grid on;
subplot (4,4,fignum) ;plot(x,y) ;
phy = phy+pi/16;
fignum=fignum+1;
end;
pause(1);
n=n+1;
end;
phy=phy+pi/16;
fignum=fignum+1;
end;
pause(4);
n=n+1;
end;
%
结果,
Error using ==> mtimes
Inner matrix dimensions must agree.
这学期才上机械振动学,老师安排了一个编程作业。 |
|