yunfenger 发表于 2010-7-28 20:46

LORENZ吸引子

如下MATLAB程序。。。。MATLAB6.5
%a,b,c 为系统的三个变量,用ODE45数值解算法
clear
global a b c
a=10;b=8/3;c=22;
=ode45('Lorenz',,);
subplot(2,2,1)
plot(X(:,1),X(:,2))
subplot(2,2,2)
plot(X(:,1),X(:,3))
subplot(2,2,3)
plot(X(:,2),X(:,3))
subplot(2,2,4)
plot3(X(:,1),X(:,2),X(:,3))
view(-20,60);
xlabel('x');ylabel('y');zlabel('z');



function dx=Lorenz(t,x)
global a b c
dx=;


画出来的图形附件!根据不同的参数画出来的图

zhao6884269 发表于 2010-8-26 11:33

试试运气啦~~~~~~~~~~~

lilijie_shangha 发表于 2010-8-26 11:34

来报道!!!!!!!!!!!

wy371tt1 发表于 2010-8-26 11:35

鉴定完毕!  

fengzhisheng106 发表于 2010-8-26 11:36

强人,佩服死了。呵呵,不错啊

想做就做 发表于 2010-8-26 11:38

强人,佩服死了。呵呵,不错啊

547896321 发表于 2010-8-26 11:46

我来了~~~~~~~~~ 闪人~~~~~~~~~~~~~~~~  

mybaby 发表于 2010-8-26 13:52

哦~~

surfw 发表于 2010-8-26 18:59

试试运气啦~~~~~~~~~~~

xiaoai 发表于 2010-8-26 19:17

强人,佩服死了。呵呵,不错啊
页: [1] 2
查看完整版本: LORENZ吸引子