Tspan is not strictly increasing.

4 views (last 30 days)
Asir Tushar
Asir Tushar on 24 Nov 2019
Commented: Asir Tushar on 29 Nov 2019
I am trying to solve a second order ode using ODE45 but my tspan is not strictly increasing. How can I solve it ?

Accepted Answer

Stephan
Stephan on 27 Nov 2019
Since ode45 uses an automated stepwide control just define the start and the end of your tspan this way:
tspan = [0 10];
This is all you have to do to solve this problem.
  3 Comments
Stephan
Stephan on 28 Nov 2019
tspan = sort(unique(T0));
should solve this.

Sign in to comment.

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!