I have a small problem in coding confusion 3x3 matrix by using matlab...

I tried the code below,

average = sum(diag(Mconf)./sum(Mconf,2))/3;

However, it get NaN for the confusion matrix is [0 0 0;1 2 3;4 5 6] or [1 2 3;0 0 0;4 5 6] or [1 2 3;4 5 6;0 0 0]

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Try

average = sum(diag(Mconf)./sum(Mconf+eps,2))/3;

To eliminate the division by zero.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.