I want to plot solution of differential equation which behaves differently at different time interval.
For eg, dh/dt=h^2-f(t)*h Where f(t)=t for [0,3] and f(t)=1 for [3,10].
h(0)=15
How can I plot the solution of differential equation in same plot from [0,10]

답변 (1개)

Star Strider
Star Strider 2018년 2월 23일

0 개 추천

You need to integrate it on [0 3] with ‘f(t)=t’ and ‘h(0)=15’, then integrate it on [3 10] with ‘f(t)=1’, and ‘h(0)=h(3)’ from the previous integration.
The ODE numerical integration functions do not handle integrating across significant discontinuities, so separate integrations over the two time intervals are required.

카테고리

도움말 센터File Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

질문:

2018년 2월 23일

답변:

2018년 2월 23일

Community Treasure Hunt

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

Start Hunting!

Translated by