Clear Filters
Clear Filters

Error tolerance in ODE45

40 views (last 30 days)
Buttercup12
Buttercup12 on 10 Feb 2022
Commented: Steven Lord on 11 Feb 2022
What's the role of the error tolerance in ode45? What does it do?

Accepted Answer

Steven Lord
Steven Lord on 10 Feb 2022
Are you referring to the options in the Error Control option group in the table on this documentation page? If you click on the name of the option you will be taken to the section of the odeset documentation page discussing that option. After reading the sections on RelTol, AbsTol, and NormControl do you have a specific question about one or all of those options?
You might also find pages 11-13 of the paper "The MATLAB ODE Suite" included in the PDF documentation and the chapter on ODEs in Cleve Moler's Numerical Computing with MATLAB informative.
  2 Comments
Buttercup12
Buttercup12 on 10 Feb 2022
Your answer helped to clear some things up, but I got another follow-up question. From one of the sources you gave me I found this:
"To be successful, the step must have acceptable error, as determined by both the relative and absolute error tolerances..."
What happes if the step doesn't have an acceptable error? Is the step adjusted?
Steven Lord
Steven Lord on 11 Feb 2022
Yes. ode45 uses an adaptive Runge-Kutta method. If the estimated error is not below tolerance the ODE solver will adapt by rejecting the step it just tried and trying a smaller step.

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!