フィルターのクリア

Numerical integration "backwards" for ODE45

17 ビュー (過去 30 日間)
Amirah Algethami
Amirah Algethami 2022 年 12 月 19 日
コメント済み: Amirah Algethami 2022 年 12 月 19 日
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

採用された回答

Torsten
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 件のコメント
Amirah Algethami
Amirah Algethami 2022 年 12 月 19 日
thanks. more clear for me.

サインインしてコメントする。

その他の回答 (1 件)

Fabio Freschi
Fabio Freschi 2022 年 12 月 19 日
  3 件のコメント
Fabio Freschi
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
Amirah Algethami
Amirah Algethami 2022 年 12 月 19 日
thanks , I hoping that not will happen with my equations.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeProgramming についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by