更新时间:2024-03-11 19:43:25
大家好,我是小环,我来为大家解答以上问题。ode45函数,ode45很多人还不知道,现在让我们一起来看看吧!
1、这下子就通了: %============== function hahaha clc;clear; t=[0,100]; h=500; y0=[0;h]; [t,y]=ode45(@weifen,t,y0); plot(t,y); function a=weifen(t,y) v=1000;x=pi/6;g=9.8; a=[v*cos(x);v*sin(x)-g*t]; %===================== 或者: %==================== clc;clear; t=[0,100]; h=500; y0=[0;h]; v=1000;x=pi/6;g=9.8; weifen=@(t,y) [v*cos(x);v*sin(x)-g*t]; [t,y]=ode45(weifen,t,y0); plot(t,y); %====================。
本文到此讲解完毕了,希望对大家有帮助。