ConsoleProgressBar

版本 1.1.0.0 (5.5 KB) 作者: Evgeny Pr
Console progress bar for long-running operations
1.4K 次下载
更新时间 2011/2/5

查看许可证

This class creates a console progress bar (status bar) for long-running operations. Visually, it's very similar to the unix command line utilites "pv" and "wget". You can customize the look to your taste.

In addition, it's funny, but it may be useful. Just for fun! :)

Usage example:
% Create Instance
cpb = ConsoleProgressBar();

% Set progress bar parameters
cpb.setLeftMargin(1); % progress bar left margin
cpb.setTopMargin(1); % rows margin

cpb.setLength(40); % progress bar length: [.....]
cpb.setMinimum(0); % minimum value of progress range [min max]
cpb.setMaximum(100); % maximum value of progress range [min max]

cpb.start();

for k = 0:100
userText = sprintf('Progress: [%d/%d]', k, 100);

cpb.setValue(k); % update progress value
cpb.setText(userText) % update user text

pause(0.025)
end

cpb.stop();

引用格式

Evgeny Pr (2024). ConsoleProgressBar (https://www.mathworks.com/matlabcentral/fileexchange/30297-consoleprogressbar), MATLAB Central File Exchange. 检索来源 .

MATLAB 版本兼容性
创建方式 R2009a
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Environment and Settings 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.1.0.0

- improved performance
- fixed minor bugs

1.0.0.0