Try catch on script for any error

5 vues (au cours des 30 derniers jours)
arun Dhillon
arun Dhillon le 15 Mai 2019
Commenté : arun Dhillon le 15 Mai 2019
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 commentaires
Adam
Adam le 15 Mai 2019
Modifié(e) : Adam le 15 Mai 2019
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.
arun Dhillon
arun Dhillon le 15 Mai 2019
Adam
First of all, thanks a lot for your reply.
I have couple of questions for to ask you, firstly what do you mean by 'sealed workspace'?
Secondly, its fine in my case for the second run to overwrite, but what do you mean by 'fully exposed workspace'.
And finally the script is like calling for connections for bunch of different hardware and functions inside of itself. My question is, Ideally how would you convert that kind of script into a function, for which the input argument should be just the name of the script (like run button on the matlab) and the output argument is an m*5 matrix(pick).

Connectez-vous pour commenter.

Réponse acceptée

Jan
Jan le 15 Mai 2019
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
  1 commentaire
arun Dhillon
arun Dhillon le 15 Mai 2019
Thanks a lot

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Scope Variables and Generate Names dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by