フィルターのクリア

ode45 : order, number of prediction and step time (theory)

2 ビュー (過去 30 日間)
21did21
21did21 2012 年 4 月 29 日
Hi world !
i want to understand the notation in matlab and the ode algorithms.
ODE45 means a classical method of Runge Kutta which an order of 4 for 5 predictions ?
how the step time is chosen by matlab ?
thanks for your answers :)

採用された回答

Jan
Jan 2012 年 4 月 29 日
ODE45 is a Runge-Kutta single step solver using the pair of order 4 and 5 solvers as communicated by Dormand and Prince. The parameters for the order 4 and 5 are chosen such, that the a minimum number of function evaluations is required.
The local discretization error is measured by the difference between the order 4 and 5 solutions. The time steps are chosen such, that this difference is smaller than the given relative and absolute tolerances.
You can find all details by reading the code of ODE45, especially the references will be helpful.

その他の回答 (1 件)

21did21
21did21 2012 年 4 月 29 日
thanks !

カテゴリ

Help Center および File ExchangeOrdinary Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by