Switch to side-by-side view

--- a
+++ b/functions/functions_Classifiers/getNumberMisclassifiedSamples.m
@@ -0,0 +1,13 @@
+function err = getNumberMisclassifiedSamples(C)
+
+%init
+err = 0;
+
+%loop on confusion matrix
+for f1 = 1 : size(C, 1)
+    for f2 = 1 : size(C, 2)
+        if f1 ~= f2
+            err = err + C(f1, f2);
+        end %if f1 ~= f2
+    end %for f1
+end %for f2
\ No newline at end of file