progbar

버전 1.3.0.0 (6.86 KB) 작성자: Ben Mitch
progbar.m: general purpose progress bar for MATLAB
다운로드 수: 8.8K
업데이트 날짜: 2010/5/13

라이선스 보기

편집자 메모: This file was selected as MATLAB Central Pick of the Week

This is a script based progress bar for MATLAB, simple usage is very simple, more complex usage is available. multiple instances no problem.

NOTE: special consideration has been given to not slowing down your hyper-optimised loops, so you should find this better than the sort of progress bar you get for free in a box of cereal.

NOTE: updated 12/05/2010 to be even better (twice as good) at not slowing down your loops. i think i really need to get a life.

typical usage:
--------------
info.color='red';
info.title='hard work';
p=progbar(info);
for n=1:1000
% do hard work here...
progbar(p,n/1000*100);
end
progbar(p,-1);

인용 양식

Ben Mitch (2024). progbar (https://www.mathworks.com/matlabcentral/fileexchange/869-progbar), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R14
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Dialog Boxes에 대해 자세히 알아보기
도움

줌: progressbar

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.3.0.0

slight appearance upgrade

1.1.0.0

Improved performance (twice as fast) in tight loops (inspired by comments from Bob Bemis).

1.0.0.0

Some people complained that progbar doesn't recognise colour codes. Well, it's not supposed to, unless you have the colour tool "rgb.m" on your path as well (see the help). This update simply adds "rgb.m".