How can I interrupt a callback and NOT come back to finish its execution in MATLAB?
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
MathWorks Support Team
le 27 Juin 2009
Modifié(e) : MathWorks Support Team
le 8 Mai 2020
I have a GUI with a callback. When the callback is interrupted during a loop, the interrupting function executes and then MATLAB returns to finish the execution of the interrupted callback. I would like MATLAB to exit the original loop once the interrupting function has finished executing.
I have tried setting the 'Interruptible' and 'BusyAction' properties of the UICONTROL to all different combinations, and nothing seemed to help.
For example, in the attached file 'testinterrupt', after entering the 1st loop, if I press the pushbutton again, MATLAB will enter loop 2, but return and finish loop 1 after loop 2 is done executing.
Réponse acceptée
MathWorks Support Team
le 8 Mai 2020
Modifié(e) : MathWorks Support Team
le 8 Mai 2020
The ability to have the interrupted function stop executing after the interrupting function is completed is not automatically available in MATLAB.
However, it is possible, as shown in the attached example "interrupt_stop", to code this logic into the loop. Notice the callback structure for PushButton1:
Inside the FOR loop, once the callback is interrupted, the function will execute completely, and then return to where it left inside the FOR loop. Eventually it will reach the IF statement with a TRUE condition, which will trigger the execution of the RETURN command, and therefore stop the execution of the original callback.
In this example, the functions SETAPPDATA and GETAPPDATA are used. These functions allow for the creation of user-defined properties, in this case "Callbackrun".
Example is now included. Please note this question is intended for the R2006b release of MATLAB and the example might not work in newer releases.* If you are still having an issue with callbacks, please try MATLAB App Designer (the replacement for GUIDE), or contact MathWorks technical support. *
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Migrate GUIDE Apps 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!