IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
progress_assert.m
Go to the documentation of this file.
1 %> @ingroup globals usercomm assert
2 %> @file
3 %> @brief PROGRESS globals management
4 function progress_assert()
5 global PROGRESS;
6 if isempty(PROGRESS)
7  PROGRESS.bars = struct('title', {}, 'perc', {}, 'i', {}, 'n', {}, 'tic', {});
8 end;
function progress_assert()