IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_ttlog_generic.m
Go to the documentation of this file.
1 %> @brief @ref ttlog_generic 's HTML (confusion matrices)
2 %>
3 %> @sa uip_report_ttlog_generic.m
4 classdef report_ttlog_generic < irreport
5  methods
6  function o = report_ttlog_generic()
7  o.classtitle = 'Results';
8  o.inputclass = 'ttlog_generic';
9  o.flag_params = 0;
10  end;
11  end;
12 
13  methods(Access=protected)
14  function out = do_use(o, obj)
15  out = log_html();
16  pars = struct();
17  out.html = obj.get_insane_html(pars);
18  out.title = obj.get_description();
19  end;
20  end;
21 end