How to restart a function if it takes too long to run?

2 views (last 30 days)
Hello! I created a time stepping function to solve differential dynamic equations. Within this function I have a while loop that aims to refine the solution for each time step.
I've noticed that for very small timesteps, the function stops progressing and gets stuck. I'd like to make it so that if this happens, then the function gets reset with a new (larger) timestep. All of this would occur automatically and I was thinking about it being based on runtime.
Thank you!

Answers (1)

Walter Roberson
Walter Roberson on 25 Oct 2020
See tic and toc, and see clock and etime
You will need to put these checks inside the code that is to be limited. There is no easy way to limit the time for a function without its active cooperation.

Categories

Find more on Get Started with Optimization Toolbox in Help Center and File Exchange

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!