Can someone help me with ODE45 function

조회 수: 1 (최근 30일)
Ali Almakhmari
Ali Almakhmari 2020년 10월 10일
댓글: Ali Almakhmari 2020년 10월 10일
I have the differential equation in the attached pdf. I would like to change into state variable form so I can use ODE45 to numrically integerate it, but I don't know how to do it. I hope someone can help me.

채택된 답변

Star Strider
Star Strider 2020년 10월 10일
I read it diferently:
f = @(t,v) (489.369-0.001464*v^2)/(-1.44*t+10) - 9.81

추가 답변 (1개)

Walter Roberson
Walter Roberson 2020년 10월 10일
f = @(t,v) (489.369-0.001464*v^2)/-1.44e+10 - 9.81
ode45(f, tspan, v0)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by