[App Designer]how to make endless loop program.

31 Ansichten (letzte 30 Tage)
Jae-Hee Park
Jae-Hee Park am 21 Dez. 2021
Beantwortet: Jae-Hee Park am 23 Dez. 2021
I want to create an app that continuously receives input and displays new images.
If I simply put a function that creates an image like below,
while(flag)
function make_image()
end
the program seems to freeze. How should I design it?
  5 Kommentare
Geoff Hayes
Geoff Hayes am 22 Dez. 2021
@Jae-Hee Park - consider using a timer to periodically update your image. The timer could have a period of one second (or less) and within its callback, you would make the update (similar to the body of your while loop).

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jae-Hee Park
Jae-Hee Park am 23 Dez. 2021
Geoff Hayes 2021년 12월 21일 13:12
@Jae-Hee Park - why is a while loop needed? When the new data is received, draw the image then. The problem with the while loop is that your code will become "stuck" within it and no other action (GUI button press, callback, etc.) will be called unless you make the loop interruptible by introducing a pause or the drawnow like @Benjamin suggests.

Weitere Antworten (0)

Kategorien

Mehr zu Graphics Performance finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by