AWAITBAR: alternative to waitbar
AWAITBAR displays waitbar with abort button
Clicking on the ABORT or the CLOSE button of the waitbar figure will abort the loop and close the waitbar.
USAGE:
H = awaitbar(x,message) creates and displays a waitbar of fractional length X with the message text in the waitbar figure. The handle to the waitbar figure is returned in H. x should be between 0 and 1.
H = awaitbar(x,message,figTitle) displays title in the figure title
H = awaitbar(x,message,figTitle,figPosition) positions the figure according to the value specified in figPosition
abort = awaitbar(x) will update in the most recently created waitbar window. The output "abort" has value true when user click the abort button of the awaitbar.
abort = awaitbar(x,H,...) will update in waitbar H
FEATURES
1. Abort button to abort the loop and close the waitbar figure.
1. It stays on top of other figures. % Thanks to Peder Axensten(11398).
2. Only one waitbar window, so no old ones left around. Thanks to Peder Axensten(11398).
5. Elapsed time and Estimated Remaining time are shown in the figure.
6. Update of the progress is also shown in the figure title.
7. User defined figure position.
EXAMPLES:
h = awaitbar(0,'Running Monte-Carlo, please wait...');
for i=1:n
pause(0.05); % Do stuff
abort = awaitbar(i/n,h,['run :' num2str(i)]); % with update message
if abort; break; end
end
Citar como
Durga Lal Shrestha (2024). AWAITBAR: alternative to waitbar (https://www.mathworks.com/matlabcentral/fileexchange/15231-awaitbar-alternative-to-waitbar), MATLAB Central File Exchange. Recuperado .
Compatibilidad con la versión de MATLAB
Compatibilidad con las plataformas
Windows macOS LinuxCategorías
Etiquetas
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Descubra Live Editor
Cree scripts con código, salida y texto formateado en un documento ejecutable.
Versión | Publicado | Notas de la versión | |
---|---|---|---|
1.0.0.0 | Abort button now works also in function
|