Convergence Criteria and ODE solvers

조회 수: 8 (최근 30일)
Hooman
Hooman 2015년 8월 21일
답변: Rishav 2025년 1월 17일
Hi, Could someone please tell me what the convergence criteria is in ode solvers in Matlab? Thanks!

답변 (1개)

Rishav
Rishav 2025년 1월 17일
Hi Hooman,
I know it has been long since you asked this question, but you can refer to the following convergence criteria in ODE solvers in MATLAB:
  1. Adaptive step size: Based on the estimated error, the solver dynamically adjusts the step size to maintain the desired tolerance level, taking smaller steps when the solution is rapidly changing and larger steps when the solution is smoother.
  2. Tolerance parameters: RelTol and AbsTol
RelTol - defines the maximum relative error allowed in the solution at each step, meaning the error is compared to the magnitude of the solution itself.
AbsTol - defines the maximum absolute error allowed, useful for ensuring a minimum level of accuracy even when the solution is very small.

카테고리

Help CenterFile Exchange에서 Ordinary Differential Equations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by