Effacer les filtres
Effacer les filtres

Save data when an error occurs inside a function.

18 vues (au cours des 30 derniers jours)
Hung Dao
Hung Dao le 2 Avr 2021
Commenté : Stephen23 le 7 Avr 2021
Hi,
I have an algorithm (called algorithm A) that takes hours to run. Algorithm A is written in a script file 'Algorithm_A.m'.
I will run alogirthm A in various cases, to make it easy for me to organize my code, I want to rewrite the script file 'Algorithm_A.m' as a function.
The thing I am concerned is that if I rewrite A into a function, will be it possible to debug the code if some error occurs inside this function?
A takes hours to run so it is important for me to check the data at the time where the error occurs.
Is it possible?
If it is, then could you tell me how to do it? How to save the data at the time where an error occurs?
Thanks !
  3 commentaires
Hung Dao
Hung Dao le 7 Avr 2021
Thanks Stephen.
Will it work if I run my code on a shared computational cluster?
Stephen23
Stephen23 le 7 Avr 2021
"Will it work if I run my code on a shared computational cluster? "
I do not know. If it does not work, then probably the try-catch solution is your best choice.

Connectez-vous pour commenter.

Réponse acceptée

Steven Lord
Steven Lord le 2 Avr 2021
Either set an error breakpoint before running the code or use a try / catch block. The error breakpoint will let you debug the code but will stop execution at the point of the error, which may not be what you want if you're running this code repeatedly and want to move on to the next iteration and come back later to determine what happened. The try / catch block will let you do whatever cleanup (saving the data, closing figures or files, etc.) you need to do before continuing on but won't let you debug the code from the point at which it failed.
  5 commentaires
Steven Lord
Steven Lord le 7 Avr 2021
Look at the contents of the stack property of the MException object named ME in the try / catch block.
Hung Dao
Hung Dao le 7 Avr 2021
Thanks. I will try.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Debugging and Analysis dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by