IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
verbose_assert.m
Go to the documentation of this file.
1 %> @ingroup globals usercomm assert
2 %> @file
3 %> @brief Initializes the @c VERBOSE global, if not present.
4 %>
5 %> For reference on the VERBOSE global, please check the source code for this file.
6 function verbose_assert()
7 global VERBOSE;
8 if isempty(VERBOSE)
9  % Minimum level for output
10  VERBOSE.minlevel = 0;
11  % Whether to output to file besides screen
12  VERBOSE.flag_file = 0;
13  % Output filename
14  VERBOSE.filename = '';
15  % Verbose session id
16  VERBOSE.sid = '';
17 end;
function verbose_assert()