IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
html_comparison_std.m
Go to the documentation of this file.
1 %>@ingroup string htmlgen
2 %>@file
3 %>@brief Transforms comparison matrix into HTML
4 %>
6 %>
7 %> @sa html_table_std.m
8 
9 %> @param M Square matrix or cell. If cell, may contain either numbers of strings
10 %> @param S Matrix of standard deviations. This one must be a matrix
11 %> @param labels cell of labels
12 %> @param B matrix with 2-bit elements: less significant bit: "flag_better"; most significant bit: "statistically significant?"
13 %> @param cornerstr =''. String to put in the corner
14 %> @return s A string
15 function s = html_comparison_std(M, S, labels, B, cornerstr)
16 
17 if nargin < 4
18  B = [];
19 end;
20 
21 if nargin < 5
22  cornerstr = '';
23 end;
24 
25 s = html_table_std(M, S, labels, labels, B, cornerstr);
function html_comparison_std(in M, in S, in labels, in B, in cornerstr)
function html_confusion(in CC, in rowlabels, in collabels, in flag_perc, in flag_rejected, in flag_color, in SS)
function html_table_std(in M, in S, in rowlabels, in collabels, in B, in cornerstr)
function html_comparison(in M, in labels, in B, in cornerstr)
function html_table_std_colors(in M, in S, in rowlabels, in collabels, in cornerstr, in minimum, in maximum, in pow)