⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ex03cch4.m

📁 these codes are for solving OED with matlab
💻 M
字号:
function sol = ex03cch4 options = ddeset('RelTol',1e-5);sol = dde23(@ddes,0.05,[2; 10],[0,10],options);plot(sol.y(1,:),sol.y(2,:),5,68/5,'r*');title('Plot in phase plane for \tau = 0.05.')xlabel('Equilibrium point at (5,68/5).')%============================================================function dydt = ddes(t,y,Z)xoft = y(1);yoft = y(2);xlag = Z(1);ylag = Z(2);dydt = [  xoft*(20 - xoft - yoft) - 7         -15*yoft + 3*xlag*ylag       ];

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -