IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_ttlog.m
Go to the documentation of this file.
1 %> @brief @ref ttlog 's HTML (confusion matrices
2 %>
3 %> @sa uip_vis_ttlog_html.m
4 classdef report_ttlog < irreport
5  properties
6  flag_individual = 0;
7  end;
8 
9  methods
10  function o = report_ttlog()
11  o.classtitle = 'ttlog default';
12  o.inputclass = 'ttlog';
13  end;
14  end;
15 
16  methods(Access=protected)
17  function out = do_use(o, obj)
18  out = log_html();
19  pars.flag_individual = o.flag_individual;
20  out.html = obj.get_insane_html(pars);
21  out.title = obj.get_description();
22  end;
23  end;
24 end
Train-Test Log.
Definition: ttlog.m:4