annotate toolboxes/MIRtoolbox1.3.2/MIRToolbox/mirwaitbar.m @ 0:e9a9cd732c1e tip

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
rev   line source
wolffd@0 1 function pb = mirwaitbar(s)
wolffd@0 2 % mirwaitbar(0) toggles off the display by MIRtoolbox of waitbar windows.
wolffd@0 3 % mirverbose(1) toggles back on the display of these waitbar windows.
wolffd@0 4
wolffd@0 5 persistent mir_wait_bar
wolffd@0 6
wolffd@0 7 if nargin
wolffd@0 8 mir_wait_bar = s;
wolffd@0 9 else
wolffd@0 10 if isempty(mir_wait_bar)
wolffd@0 11 mir_wait_bar = 1;
wolffd@0 12 end
wolffd@0 13 end
wolffd@0 14
wolffd@0 15 pb = mir_wait_bar;