IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_soitem_fhg_histcomp.m
Go to the documentation of this file.
1 %> @brief Passes on to report_log_fselrepeater_histcomp
2 %>
5  properties
8  subsetsprocessors;
9  %> =1. Whether to plot the histograms
10  flag_plot_hists = 1;
11  end;
12 
13  methods
14  function o = report_soitem_fhg_histcomp()
15  o.classtitle = 'Histograms comparison';
16  o.inputclass = 'soitem_fhg';
17  o.flag_params = 0;
18  end;
19  end;
20 
21  methods(Access=protected)
22  function out = do_use(o, obj)
23 
27  r.subsetsprocessors = o.subsetsprocessors;
28  r.flag_plot_hists = o.flag_plot_hists;
29 
30  out = r.use(obj.log);
31  end;
32  end;
33 end
Passes on to report_log_fselrepeater_histcomp.
Histograms and biomarkers comparison using various subsetsprocessor objects.
Peak Detector.
Definition: peakdetector.m:6
Base for all reports that operate on a soitem object.
Definition: report_soitem.m:2