3 %>@brief Divides each row of cc by its sum, or leaves it untouched
if its sum is zero.
5 %> Used to normalize a hits confusion matrix into a percentage confusion matrix.
7 %> Please note that it does not work well with negative numbers.
12 %> @
return matrix of same size
as input
14 cc = bsxfun(@rdivide, cc, sum(cc, 2)+realmin);
Linear and Quadratic discriminant.
Least-squares classifier.
Class representing a Confusion matrix.
Analysis Session (AS) base class.
function normalize_rows(in cc)