Numerical integration "backwards" for ODE45
조회 수: 23 (최근 30일)
이전 댓글 표시
Hi There;
I should apply Backword integration for system of differential equation by ODE45 solver in Matlab, it seems easy for some people, I want an example to understand how to make Backword integration. your answer appreciated.
Best
AA
댓글 수: 0
채택된 답변
Torsten
2022년 12월 19일
fun = @(t,y) y;
tspan = [0 1];
y0 = 1;
[Tf,Yf] = ode45(fun,tspan,y0);
tspan = [1 0];
y0 = exp(1);
[Tb,Yb] = ode45(fun,tspan,y0);
plot(Tf,Yf,Tb,Yb)
추가 답변 (1개)
Fabio Freschi
2022년 12월 19일
you may be interested to read the comments to this post
댓글 수: 3
Fabio Freschi
2022년 12월 19일
@Torsten already reported an example. I still warn you to pay attention to integrate backwards because in some cases you may have numerica blowup
참고 항목
카테고리
Help Center 및 File Exchange에서 Marine and Underwater Vehicles에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!