programs_14f.m
来自「《Dynamical Systems with Applications usi」· M 代码 · 共 6 行
M
6 行
function xdot=Programs_14f(t,x)
% The Duffing System.
global Gamma;
xdot(1)=x(2);
xdot(2)=x(1)-0.1*x(2)-(x(1))^3+Gamma*cos(1.25*t);
xdot=[xdot(1);xdot(2)];
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?