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