[App Designer]how to make endless loop program.
34 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Jae-Hee Park
il 21 Dic 2021
Risposto: Jae-Hee Park
il 23 Dic 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 Commenti
Geoff Hayes
il 22 Dic 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).
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!