1 %> @brief 1D comparison table
3 %> Compares performance estimations between several system set-ups
6 %> soitem_merger_merger_fitest object, which contains the soitem
's grouped to do the 2D
7 %> comparison tables. So, this class has first to call
8 %> soitem_merger_merger_fitest::get_sovalues_1d().
9 classdef report_soitem_merger_merger_fitest_1d < report_soitem
11 % %> =(auto). Minimum value for the colour scaling of the HTML cells
13 % %> =(auto). Maximum value for the colour scaling of the HTML cells
20 %> =1. Whether to generate the p-values tables
23 %> ={'rates
', 'times3
'}
24 names = {'rates
', 'times3
'}
26 %> vectorcomp_ttest_right() with no logtake. vectorcomp object used tor the p-values tables
29 %> Maximum number of table rows
34 function o = report_soitem_merger_merger_fitest_1d()
35 o.classtitle = '1D comparison table
';
36 o.inputclass = 'soitem_merger_merger_fitest
';
41 methods(Access=protected)
42 function out = do_use(o, item)
45 s = o.get_standardheader(item);
47 out.html = [s, o.get_html_graphics(item)];
48 out.title = item.get_description();
54 %> Generates a table with the best in each architecture, with its respective time and confidence interval
55 %> @param item a soitem_merger_merger_fitest object
56 function s = get_html_graphics(o, item)
57 % it = soitem_sovalues();
58 sov = item.get_sovalues_1d();
59 % r = report_soitem_sovalues();
61 r = report_sovalues_comparison();
62 r.dimspec = {[0, 0], [1, 2]};
63 r.flag_ptable = o.flag_ptable;
65 r.vectorcomp = o.vectorcomp;
66 r.maxrows = o.maxrows;
68 s = r.get_html_tables(sov);
Comparison and p-values tables.