lorenzeq.m
来自「非线性控制 Matlab编译」· M 代码 · 共 15 行
M
15 行
function ydot = lorenzeq(t,y)%LORENZEQ Equation of the Lorenz chaotic attractor.% ydot = lorenzeq(t,y).% The differential equation is written in almost linear form.% Copyright (c) 1984-94 by The MathWorks, Inc.global SIGMA RHO BETAA = [ -BETA 0 y(2) 0 -SIGMA SIGMA -y(2) RHO -1 ];ydot = A*y;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?