Effacer les filtres
Effacer les filtres

Uiwait does not work app designer

5 vues (au cours des 30 derniers jours)
gravy
gravy le 24 Fév 2024
Commenté : gravy le 25 Fév 2024
I have a plot that is drawn by points in a while loop and I want to make a pause button. When I did it using the for loop uiwait worked, but in the while loop it doesn't. What is the problem?
  2 commentaires
Walter Roberson
Walter Roberson le 24 Fév 2024
Please show the code.
gravy
gravy le 24 Fév 2024

Connectez-vous pour commenter.

Réponses (1)

Walter Roberson
Walter Roberson le 24 Fév 2024
if app.VButton.Value == 1 | app.GButton.Value == 1
break
end
You are not testing the state of the pause button. You should have something like
while app.PauseButton.Value
pause(0.00000000001);
drawnow();
end
In two places.
  1 commentaire
gravy
gravy le 25 Fév 2024
Thanks for the reply. I have a condition of transition between buttons T V G, not checking the state of the pause button, I tried to do it via uiwait, but it doesn't work for some reason.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange

Produits


Version

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by