标题:大家好好好
只看楼主
linpandr
Rank: 1
等 级:新手上路
帖 子:3
专家分:0
注 册:2007-9-30
 问题点数:0 回复次数:0 
大家好好好
function xdot=lorenz1(t,x,flag,beta,rho,sigma)
xdot=[-beta*x(1)+x(2)*x(3);
-rho*x(2)+rho*x(3);
-x(1)*x(2)+sigma*x(2)-x(3)];
t_final=100;x0=[0;0;1e-10];
b1=8/3;r1=10;s1=28;
[t,x]=ode45('lorenz1',[0,t_final],x0,[],b1,r1,s1);
plot(t,x)
figure;plot3(x(:,1),x(:,2),x(:,3));
axis([10 42 -20 20 -20 25]);
谢谢您们指出错在哪里
搜索更多相关主题的帖子: sigma function 
2007-10-05 20:37



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-175307-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.422141 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved