IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_soitem_fs.m
Go to the documentation of this file.
1 %> @brief Plots the (nf)x(rates) curve
2 %>
4  methods
5  function o = report_soitem_fs()
6  o.classtitle = '(nf)x(rates) curve';
7  o.inputclass = 'soitem_fs';
8  o.flag_params = 0;
9  end;
10  end;
11 
12  methods(Access=protected)
13  function out = do_use(o, obj)
14  out = log_html();
15  out.html = [o.get_standardheader(obj), o.images_1d(obj.sovalues)];
16  out.title = obj.get_description();
17  end;
18  end;
19 
20 end
Plots the (nf)x(rates) curve.
Generated by irreport, carries HTML contents.
Definition: log_html.m:2
Base for all reports that operate on a soitem object.
Definition: report_soitem.m:2