File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 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';
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
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 )
You can’t perform that action at this time.
0 commit comments