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

1 次查看(过去 30 天)
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 个评论
Jan
Jan 2018-6-21
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.

请先登录,再进行评论。

回答(0 个)

类别

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