IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_soitem_foldmerger_fitest.m
Go to the documentation of this file.
1 %> @brief Passes on to report_estlog, to show confusion matrices
2 %>
4  methods
6  o.classtitle = 'Confusion matrices';
7  o.inputclass = 'soitem_foldmerger_fitest';
8  o.flag_params = 0;
9  end;
10  end;
11 
12 
13 
14  methods(Access=protected)
15  function out = do_use(o, obj)
16  out = log_html();
17 
18  or = report_estlog();
19  log_or = or.use(obj.logs{1});
20  out.html = [o.get_standardheader(obj), log_or.html];
21  out.title = obj.get_description();
22  end;
23  end;
24 end
Property title
Definition: irobj.m:38
estlog 's HTML (confusion matrices)
Definition: report_estlog.m:4
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
Passes on to report_estlog, to show confusion matrices.