IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
more_assert.m
Go to the documentation of this file.
1 %> @ingroup globals assert
2 %> @file
3 %> @brief Initializes the MORE global, if not present.
4 %>
5 %> For reference on the MORE global, please view the source code for this file.
6 %>
8 function more_assert()
9 global MORE;
10 if isempty(MORE)
11  % Default peakdetector options
12  MORE.pd_maxpeaks = 6;
13  MORE.pd_minaltitude = 0.105;
14  MORE.pd_minheight = 0.10;
15  MORE.pd_mindist_units = 31;
16 
17  % Default subsetsprocessor options
18  MORE.ssp_stabilitythreshold = 0.05;
19  MORE.ssp_minhits_perc = 0.031;
20  MORE.ssp_nf4gradesmode = 'fixed';
21 
22  % Default biocomparer's half height
23  MORE.bc_halfheight = 45;
24 
25  % Whether default post-processors are created with a group aggregation included
26  MORE.flag_postpr_grag = 0;
27 end;
function more_assert()
Peak Detector.
Definition: peakdetector.m:6
function def_peakdetector(in out)
function def_subsetsprocessor(in out)
function def_biocomparer(in out)
Processor of a set of subsets of features.
function def_postpr_test(in out)
function def_postpr_est(in out)