Switch to side-by-side view

--- a
+++ b/Semantic Features/GetClassSuccessRate.m
@@ -0,0 +1,8 @@
+function [ classSuccessRate ] = GetClassSuccessRate( classValue, label )
+%GetClassSuccessRate Convert decimals to (integer) classes, get % matching
+%the label matrix
+
+classSuccessRate = sum(round(classValue) == round(label))/size(label,1);
+
+end
+