Usage: handle= waitwaitbar('title', delay, )
Creates a waitbar that only shows after a delay -- or never if the waitbar is closed before the delay is up.
If you find any errors, please let me know! (peder at axensten dot se)
title: (default: '') The string in the waitbar.
delay: (default: 5) Delay in seconds (0 <= delay <= 60) before waitbar is shown.
EXAMPLE:
h= waitwaitbar('Please wait...');
for i= 1:50
waitbar(i/50);
pause(0.2);
end
close(h);
NOTE: waitwaitbar('My title', 0, ...) is the same as waitbar(0, 'My title', ...).
Requirements:
· MATLAB Release: R13SP1