IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
report_soitem_merger_merger_fitest.m
Go to the documentation of this file.
1 %> @brief
3  properties
4  %> =(auto). Minimum value for the colour scaling of the HTML cells
5  minimum = [];
6  %> =(auto). Maximum value for the colour scaling of the HTML cells
7  maximum = [];
8  end;
9 
10  methods
12  o.classtitle = '2D Comparison table';
13  o.inputclass = 'soitem_merger_merger_fitest';
14  o.flag_params = 1;
15  end;
16  end;
17 
18  methods(Access=protected)
19  function out = do_use(o, item)
20  out = log_html();
21 
22  s = o.get_standardheader(item);
23 
24  out.html = [s, o.get_html_graphics(item)];
25  out.title = item.get_description();
26  end;
27  end;
28 
29 
30  methods
31  %> Generates a table with the best in each architecture, with its respective time and confidence interval
32  %> @param item a soitem_merger_merger_fitest object
33  function s = get_html_graphics(o, item) %#ok<MANU>
34  s = '';
35 
36  s = cat(2, s, item.html_rates(o.minimum, o.maximum));
37  end;
38  end;
39 end
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