Sie verfolgen jetzt diese Einreichung
- Aktualisierungen können Sie in Ihrem Feed verfolgter Inhalte sehen.
- Je nach Ihren Kommunikationseinstellungen können Sie auch E-Mails erhalten.
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();
Zitieren als
Evgeny Pr (2026). ConsoleProgressBar (https://de.mathworks.com/matlabcentral/fileexchange/30297-consoleprogressbar), MATLAB Central File Exchange. Abgerufen .
Quellenangaben
Inspiriert: ecopath_matlab: A Matlab implementation of Ecopath
Allgemeine Informationen
- Version 1.1.0.0 (5,54 KB)
Kompatibilität der MATLAB-Version
- Kompatibel mit allen Versionen
Plattform-Kompatibilität
- Windows
- macOS
- Linux
| Version | Veröffentlicht | Versionshinweise | Action |
|---|---|---|---|
| 1.1.0.0 | - improved performance
|
||
| 1.0.0.0 |