Returning from functions in debugging mode
6 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jonas Rosegren
il 8 Ago 2019
Commentato: Jonas Rosegren
il 17 Ago 2019
Hi,
Does anyone know how to force an early return to the caller from a function while in debug mode?
I have a main program calling "plug-in" m-scripts, and while developing these m-script you sometimes (quite often actually) come across bugs in the script, which forces you to quit the main program with all its previous calculations and all.
I would like to find a way of entering "return" in the command prompt to return to the main program and escape the function. Then I can update the script and clear the function from the memory and call it again without quiting the main program, which would be a great help.
Anyone experienced similar problem?
Jonas
0 Commenti
Risposta accettata
Sahithi Kanumarlapudi
il 14 Ago 2019
You cannot force return from a function using MATLAB. But if your script files have an error you can use ‘try-catch’ blocks where you can place a ‘return’ statement in the catch block
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Simulink Functions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!