Please explain Matlab's naming convention for odepq

1 回表示 (過去 30 日間)
cgo
cgo 2021 年 1 月 22 日
コメント済み: cgo 2021 年 1 月 22 日
There are ODE solvers built into Matlab, all named in the form of odepq.
I understand p is the order. For Euler's method it is order 1, Heun's and Midpoint are order 2, while Runge-kutta is order 4. What is the q here?

採用された回答

Walter Roberson
Walter Roberson 2021 年 1 月 22 日
編集済み: Walter Roberson 2021 年 1 月 22 日
p is the order of the calculation used to predict the solution, and q is the order of the calculation used for the error estimate.
Exception:
"ode113 is a variable-step, variable-order (VSVO) Adams-Bashforth-Moulton PECE solver of orders 1 to 13. The highest order used appears to be 12, however, a formula of order 13 is used to form the error estimate and the function does local extrapolation to advance the integration at order 13."
  4 件のコメント
Steven Lord
Steven Lord 2021 年 1 月 22 日
FYI Cleve Moler offers a bit more of the details behind the solvers in section 7.12 (the chapter titled "Ordinary Differential Equations") of his textbook "Numerical Computing with MATLAB" that is available here.
cgo
cgo 2021 年 1 月 22 日
thank you! extremely helpful

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

その他の回答 (0 件)

カテゴリ

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