How to automatically continue running the program after an error.
Show older comments
The problem I'm having is currently with the GMM fit model. but it's rather general. during the run of my program GMM sometimes gives the error of ill conditioned matrix and breaks the code. Now my code is in a long loop with a counter. what I'm doing right now is to manually reset the loop counter in the code body to the last working number, so that the code restarts from the point where it stoped. But it's tedious. Is there a way to tell matlab to do a few basic operations in case of an error and try again, instead of breaking off with an error?
Accepted Answer
More Answers (1)
Alberto
on 24 Sep 2014
You should try to catch the error using the structure try/catch structure:
try
statements
catch exception
statements
end
Use Product Help for details
Categories
Find more on Get Started with MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!