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

📄 examp3_30.m

📁 matlab的大量实例代码
💻 M
字号:
h_opt=odeset; x0=[-0.2; -0.7]; t_final=20;
mu=1; [t1,y1]=ode45('vdp_eq',[0,t_final],x0,h_opt,mu);
mu=2; [t2,y2]=ode45('vdp_eq',[0,t_final],x0,h_opt,mu);
plot(t1,y1,t2,y2,':')
figure; plot(y1(:,1),y1(:,2),y2(:,1),y2(:,2),':')

h_opt=odeset; x0=[-0.2; -0.7]; t_final=20;
mu=1; [t1,y1]=ode45(@vdp_eq1,[0,t_final],x0,h_opt,mu);
mu=2; [t2,y2]=ode45(@vdp_eq1,[0,t_final],x0,h_opt,mu);
plot(y1(:,1),y1(:,2),y2(:,1),y2(:,2),':')

h_opt=odeset; x0=[2;0]; t_final=3000;
mu=1000; [t,y]=ode45(@vdp_eq1,[0,t_final],x0,h_opt,mu);
        
        

⌨️ 快捷键说明

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