Skip to content

Commit 9225627

Browse files
committed
ratio_resol = 0.01
1 parent a7e74c2 commit 9225627

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/ProgressBar/ProgressBar.m

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
% ProgressBar
22
%
33
% Handy progress bar that can be used in GUI or text interface.
4+
% - Faster than waitbar (MATLAB builtin)
45
% - GUI interface
56
% - CLI interface
67
% - Parfor compatibility
78
%
9+
% -=#( Monospaced fonts are recommended for the CLI interface )#=-
10+
%
811
% GUI progress bar
912
% | N = 100;
1013
% | task_name = 'Task name';
@@ -57,6 +60,7 @@
5760
%
5861
%
5962
% created 2023. 07. 14.
63+
% edited 2023. 07. 19.
6064
% author Cho HyunGwang
6165
%
6266
% https://github.com/elgar328/matlab-code-examples/tree/main/tools/ProgressBar
@@ -104,7 +108,7 @@
104108
end
105109
properties (SetAccess = immutable, Hidden = true, Transient)
106110
fig_handle
107-
ratio_resol = 0.001;
111+
ratio_resol = 0.01;
108112
end
109113
% ------------------------ Properties for CLI -------------------------
110114
properties (Access = private, Transient)

0 commit comments

Comments
 (0)