?? solution.m
字號(hào):
global a;
global b;
global c;
b=2;
c=4;
t0=[0,200];
for a=0:0.02:0.65
[t,x]=ode45('rossler',t0,[0,0,0]);
a
subplot(1,2,1);
plot(t,x(:,1),'r',t,x(:,2),'g',t,x(:,3),'b');
title('x(紅色),y( 綠色),z(籃色)隨t變化情況');xlabel('t')
subplot(1,2,2);
plot3(x(:,1),x(:,2),x(:,3))
title('相圖');xlabel('x');ylabel('y');zlabel('z');
pause
end
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -