Adding a progress bar in App Designer inside a callback

조회 수: 12 (최근 30일)
Atharva Sule
Atharva Sule 2022년 2월 24일
댓글: Rik 2022년 2월 25일
I'm trying to design an app where multiple models are simulated at the press of a single button. I've added the entire code for all models within the callback for the said button. I also want to display a progress bar that displays which model is being executed (and its progress). Where should I add the code for the progress bar? I tried adding the code in the same callback function but the progress bar shows up after the entire callback has been executed. Thanks in advance.
  댓글 수: 3
Atharva Sule
Atharva Sule 2022년 2월 25일
Thanks a lot, @Rik! That worked.
Rik
Rik 2022년 2월 25일
You're welcome, I expanded my comment and posted is as an answer. That should increase the visibility for future users with a similar issue.

댓글을 달려면 로그인하십시오.

채택된 답변

Rik
Rik 2022년 2월 25일
To increase performance, Matlab does not automatically update graphics elements on the screen after a function call that modified/created it. This allows creation and modification of object to be processed together, instead of one after the other.
Whenever Matlab stops execution (e.g. after a pause or when finishing the execution of a callback) it will flush the queue of graphics interactions. This not only includes updating graphics, but also triggering new callbacks. You can force this flushing in two ways:
  1. Call pause with a tiny interval (to avoid the wait time to harm performance too much).
  2. Call drawnow directly.
Usually there is no need to do this and the automatic methods work well enough, but if you want to ensure your user sees a particular change, the drawnow function is there to facilitate this.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Environment and Settings에 대해 자세히 알아보기

태그

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by