- https://www.mathworks.com/matlabcentral/fileexchange/6922-progressbar
- https://www.mathworks.com/matlabcentral/fileexchange/4863-ascii-progress-bar
- https://www.mathworks.com/matlabcentral/fileexchange/26589-multiwaitbar
- https://www.mathworks.com/matlabcentral/fileexchange/14773-statusbar (fancy: statusbar of the command window!)
Is there any way to display a progress bar in command window while the code is running?
178 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Imtiaz nabi
am 17 Mär. 2022
Beantwortet: Steven Lord
am 17 Mär. 2022
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?
0 Kommentare
Akzeptierte Antwort
Jan
am 17 Mär. 2022
Bearbeitet: Jan
am 17 Mär. 2022
Yes. You find several dozens of progressbars and waitbars for figures, dialogs, the command window and the statusbar in the FileExchange. Simply search for "progressbar" and "waitbar" here: https://www.mathworks.com/matlabcentral/fileexchange
0 Kommentare
Weitere Antworten (1)
Steven Lord
am 17 Mär. 2022
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.)
0 Kommentare
Siehe auch
Kategorien
Mehr zu Dialog Boxes 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!