Vous suivez désormais cette soumission
- Les mises à jour seront visibles dans votre flux de contenu suivi
- Selon vos préférences en matière de communication il est possible que vous receviez des e-mails
WAITBAR2 - Displays wait bar with fancy color shift effect
Adaptation of the MatLab standard waitbar function:
WAITBAR2 is typically used inside a FOR loop that performs a
lengthy computation. A sample usage is shown below:
h = waitbar(0,'Please wait...', 'BarColor', 'g');
for i = 1:100,
% computation here %
waitbar(i/100, h);
end
close(h);
Examples for the 'BarColor' option:
- Standard color names: 'red', 'blue', 'green', etcetera
- Standard color codes: 'r', 'b', 'k', etcetera
- A RGB vector, such as [.5 0 .5] (deep purple)
- Two RGB colors in a matrix, such as [1 0 0; 0 0 1] (gradient red-blue)
The latter example shows how to create a custom color-shift effect. The top row of the 2x3 matrix gives the initial color, and the bottom row the end color.
Citation pour cette source
Jasper Menger (2026). Waitbar2 (https://fr.mathworks.com/matlabcentral/fileexchange/9117-waitbar2), MATLAB Central File Exchange. Extrait(e) le .
Remerciements
A inspiré : waitbar2a(x, whichbar, varargin)
Informations générales
- Version 1.0.0.0 (3,41 ko)
-
Aucune licence
Compatibilité avec les versions de MATLAB
- Compatible avec toutes les versions
Plateformes compatibles
- Windows
- macOS
- Linux
| Version | Publié le | Notes de version | Action |
|---|---|---|---|
| 1.0.0.0 |
