Try catch on script for any error
1 次查看(过去 30 天)
显示 更早的评论
Hello
I am having a script(myscript), that throws an error whenever there is any part of hardware missing, which is defined in different ways to be used inside of the script.
What I want to do is that whenever any error (maybe even some different error, that I may have not encountered before), whenever "any kind of error" occurs, the script shall retry running for one more time. What would be the best way to do this.
Is try catch the only option, and if yes please edify for how can I use it for 'myscript' to be executed one more time, when the error happens.
Thanks in advance
2 个评论
Adam
2019-5-15
编辑:Adam
2019-5-15
Turning it into a function with a sealed workspace would make it easier. But a try-catch would work with this in that case. Theoretically it would work with a script too, but having the workspace fully exposed is not ideal even though the second run should presumably just overwrite everything from the first run anyway.
try
myFunction( )
catch
myFunction( )
end
should be enough to do it though. So long as it isn't in a loop this will only re-run it once and then the error will just land on your command window as normal after the 2nd time.
Blanket error catching like this is not generally advisable though as even basic syntax errors will just result in it attempting to run a second time pointlessly before reporting your error, but I understand it can be difficult if you get a bunch of different hardware errors with identifiers you don't necessarily know.
采纳的回答
Jan
2019-5-15
nRetry = 8;
for k = 1:nRetry
try
yourFunction();
break; % Exit from the loop on success
catch ME
fprintf('*** Failed: %s\n Retrying...\n', ME.message);
end
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Startup and Shutdown 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!