timed waitbar

버전 1.0.0.0 (1.31 KB) 작성자: Aslak Grinsted
A progress bar in a single line of code with ETA
다운로드 수: 303
업데이트 날짜: 2016/4/8

라이선스 보기

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

인용 양식

Aslak Grinsted (2024). timed waitbar (https://www.mathworks.com/matlabcentral/fileexchange/32413-timed-waitbar), MATLAB Central File Exchange. 검색됨 .

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

Community Treasure Hunt

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

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

fixed bugs, changed appearance