Clear Filters
Clear Filters

Matlab warning response when I use ode23s to solve a differential equation

1 view (last 30 days)
Warning: Failure at t=8.220327e-08. Unable to meet integration tolerances without reducing the step size below the smallest value allowed (2.920447e-22) at time t.
My code can run the result of angle 45, but fails at the angle of 50. I can't figure out the reason.
  2 Comments
Jan
Jan on 21 Jun 2018
Some hints:
  • Omit the darn clear all, which causes more troubles than it solves.
  • Provide the function to be integrated as function handle, not as string. The string method is still working to keep the backward compatibility, but it is outdated for 20 years now.
  • 1./x is much more efficient that x.^-1
We cannot guess, which "angle" you set where from 45 to 50. Without any useful comments the code is a graveyard for numbers and trigonometric functions only. Use trailing semicolons to suppress the time-consuming output to the command window.
The error message occurs, if there is a pole at the initial position.

Sign in to comment.

Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!