范德波尔波形

本文通过使用 MATLAB 的多种 ODE 求解器,包括 ode45、ode23、ode113、ode23t、ode15s、ode23s、ode23tb,对 Van der Pol 方程进行数值求解并绘制结果对比图。这些求解器适用于不同类型的方程,展示了它们在解决同一问题时的表现。
摘要由CSDN通过智能技术生成

在这里插入图片描述
在这里插入图片描述

function fy=VDP(t,x)
fy=[x(2);7*(1-x(1)^2)*x(2)-x(1)];
Y0=[1;0];
[t,x]=ode45(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode23(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode113(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode23t(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode15s(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode23s(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

Y0=[1;0];
[t,x]=ode23tb(‘VDP’,[0,40],Y0);
y=x(:,1);
dy=x(:,2);
plot(t,y,t,dy);
在这里插入图片描述

MATLAB概率与数据统计分析—张德丰等编著–第12页–[M]北京:机械工业出版社

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值