IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
setup_load.m
Go to the documentation of this file.
1 %> @file
2 %> @ingroup globals setupgroup
3 %> @brief Executes file irootlab_setup.m, if exists.
4 function setup_load()
5 assert_all();
6 
7 if exist('irootlab_setup.m', 'file')
8  irootlab_setup;
9 elseif exist('irootsetup.m', 'file') % Backward compatibility
10  irootsetup;
11 end;
function assert_all()
function setup_load()