Filter löschen
Filter löschen

How do I display "Busy" like that in MATLAB when simulation is running in GUI?

10 Ansichten (letzte 30 Tage)
How do I display "Busy" like that in MATLAB when simulation is running? I need to display "BUSY" when my simulation is running in GUI and when the simulation stopped, it should show "DONE" using guide.

Akzeptierte Antwort

Bruno Luong
Bruno Luong am 19 Jul. 2022
Bearbeitet: Bruno Luong am 19 Jul. 2022
Create a static text somewhere i the GUI and set the string to "busy" before runing simumation tjen "done" once finished.
You can also set the figure 'pointer' property to 'watch' then 'arrow'.
  1 Kommentar
Walter Roberson
Walter Roberson am 20 Jul. 2022
Note: I suggest using an onCleanup() to ensure that you remove the busy status if the activity is stopped (whether by user activity or by crash.)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 19 Jul. 2022
Have you considered using waitbar()? (You are not required to update the estimated fraction complete)
waitbar() also has an alternative way of drawing the bar so that it is more like a "barber pole" rather than fraction complete. At the moment I do not recall the configuration method... I think it involves Java properties.

Kategorien

Mehr zu Dialog Boxes finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by