txtprogressbar

show simulation progress and remaining time as text
1,2K descargas
Actualizado 24 may 2007

Ver licencia

This program is a text version of the "progressbar" program written by Steve Hoelzer. I have found this program useful when using Matlab in console mode (under Linux) for long simulations (usually several hours). I use to launch Matlab in the background with the following command:

nohup matlab -nojvm -nosplash -nodesktop < my_program.m &

All text output is directed to nohup.out file, which can be tested periodically with: "tail -f nohup.out". Using "nohup" has also the advantage that Matlab continues to run after the user is logged out.

Usage example of "txtprogressbar":
n = 1000;
txtprogressbar % Set starting time
for i = 1:n
pause(0.01) % Do something important
txtprogressbar(i/n) % Update text
end

Citar como

Bogdan Cristea Eugen (2024). txtprogressbar (https://www.mathworks.com/matlabcentral/fileexchange/15030-txtprogressbar), MATLAB Central File Exchange. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2007a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Startup and Shutdown en Help Center y MATLAB Answers.
Agradecimientos

Inspirado por: progressbar

Inspiración para: Autoscaleit

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0

help added, now simulation progress has one digit after the decimal point