Is there any way to display a progress bar in command window while the code is running?

I have a for loop that runs 60 time and inside that there is another for loop which runs 12 times containing another nested for loop that runs 260000 times which is the buffer size.
Matlab is taking forever to complete that calculation so is there any way that can track the progress while the code is running so that I can know when will the code end?

More Answers (1)

You could try pausing the running file to examine the values of the loop counters to see if you're almost done, barely started, or somewhere in the middle.
To add to what Jan said, there are progress bar functions included in MATLAB. See the documentation page for the waitbar function (or uiprogressdlg if you're using App Designer.)

Categories

Find more on App Building in Help Center and File Exchange

Products

Release

R2020a

Asked:

on 17 Mar 2022

Answered:

on 17 Mar 2022

Community Treasure Hunt

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

Start Hunting!