why this command does not work
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
"pause ()" i used this command in my function and i use this function in my gui and i acquire data from simulink when i start this function which contain "pause command" data from simulink stopped until i exit the function which contain "pause command" what can i do?
1 commentaire
TAB
le 9 Juil 2012
It is not clear, how you are acquiring data from simulink and in which function you are calling pause().
Please explain your problem with neat details.
Réponses (1)
Luffy
le 5 Juil 2012
Modifié(e) : Walter Roberson
le 8 Juil 2012
Try command:
To pause your code at a point try,
uiwait;
at the point where you want to resume execution of your code try,
uiresume;
3 commentaires
Luffy
le 6 Juil 2012
Modifié(e) : Walter Roberson
le 8 Juil 2012
So you do not want data from Simulink to stop until you exit function,you still want data to come,
Try ,
pause on;
pause(n) % n is n.o seconds
Voir également
Catégories
En savoir plus sur Programmatic Model Editing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!