📄 programs_14c.m
字号:
% Chapter 14 - Poincare Maps and Nonautonomous Systems in the Plane.
% Programs_14c - Phase portraits for nonautonomous systems.
% Copyright Birkhauser 2004. Stephen Lynch.
% Phase portrait for the Duffing system.
deq=inline('[x(2);x(1)-0.3*x(2)-(x(1))^3+0.5*cos(1.25*t)]','t','x');
options=odeset('RelTol',1e-4,'AbsTol',1e-4);
[t,xx]=ode45(deq,[0 200],[1,0],options);
plot(xx(:,1),xx(:,2))
fsize=15;
axis([-2 2 -2 2])
xlabel('x','FontSize',fsize)
ylabel('y','FontSize',fsize)
% End of Programs_14c.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -