马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?我要加入
x
以下是我摘自liliangbiao 空间求duffing方程的相图程序,帮我解释一下
r=length(t)-3000:length(t);这句是什么意思?
非常感谢!!
% Author: Thomas Lee
% E-mail: lixf1979@126.com
% Corresponding: School of Mathematics, Physics and Software Engineering, Lanzhou Jiaotong University, Lanzhou 730070, China
function dx=duffing(t,x);
mu=0.168;
%F=0.22;
%F=0.198;
%F=0.18;
F=0.15;
w=1;
dx=[x(2);F*sin(w*t)-mu*x(2)+x(1)/2-x(1)^3/2];
function xiangtu1
x0=[0.9;0.01];
tspan=[0:0.01*2:100*pi];
[t,x]=ode45('duffing',tspan,x0);
r=length(t)-3000:length(t);
plot(x(r,1),x(r,2),'r.','markersize',1) |