timed waitbar

A progress bar in a single line of code with ETA
303 téléchargements
Mise à jour 8 avr. 2016

Afficher la licence

waitbar with ETA, Estimated Time of Arrival...
Usage: h=timedwaitbar(fraction_complete[,infostring])
Fraction: is a number between 0 and 1. a value of 1 means completed and closes the window.
h: window handle.

some nice features:
* Estimates how much time before completion.
* Automatically open and close the waitbar window.
- It closes the window when fraction reaches 1
* You can abort the program by closing the progressbar

example use:

for ii=1:1000
timedwaitbar(ii/1000)
q=isprime(ii+1000:10000);
end

Citation pour cette source

Aslak Grinsted (2024). timed waitbar (https://www.mathworks.com/matlabcentral/fileexchange/32413-timed-waitbar), MATLAB Central File Exchange. Récupéré le .

Compatibilité avec les versions de MATLAB
Créé avec R2013a
Compatible avec toutes les versions
Plateformes compatibles
Windows macOS Linux
Catégories
En savoir plus sur Dialog Boxes dans Help Center et MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Publié le Notes de version
1.0.0.0

fixed bugs, changed appearance