ode45解二阶微分方程。
18 次查看(过去 30 天)
显示 更早的评论
利用ode45解二阶微分方程画出的图像是不断上升的,而解析解的图像是不断下降的图像。请问问题在哪?程序为:
function dydx=myode(x,y)
dydx=zeros(2,1)
dydx(1)=y(2)
dydx(2)=(x.^2-1).*y(1)
end
xspan=[0 8]
y0=[0 1]
[x,y]=ode45(@myode,xspan,y0)
plot(x,y(:,1))


0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!