?? mf36.m
字號(hào):
%混沌對(duì)初始條件非常敏感,即初始條件的微小差別常常使軌道按指數(shù)形式分開(蝴蝶效應(yīng))
%主函數(shù)
function main()
clear all;
clc;
[t,x1]=ode45(@ly36,[0 1e+5],5.1)
%x11=x1(:,1);
%x12=x1(:,2);
figure
hold on
plot(t,x1,'r-')
%plot(t,x11,'r-')
%plot(t,x12,'k-')
[t,x1]=ode45(@ly36,[0 1e+5],4.9)
%x11=x1(:,1);
%x12=x1(:,2);
hold on
plot(t,x1,'k-')
%plot(t,x11,'r-')
%plot(t,x12,'k-')
grid
[t,x1]=ode45(@ly36,[0 2.264692e+5],5.1)
%x11=x1(:,1);
%x12=x1(:,2);
figure
plot(t,x1,'r-')
%plot(t,x11,'r-')
%plot(t,x12,'k-')
[t,x1]=ode45(@ly36,[0 2.264692e+5],4.9)
%x11=x1(:,1);
%x12=x1(:,2);
hold on
plot(t,x1,'k-')
%plot(t,x11,'r-')
%plot(t,x12,'k-')
grid
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -