function [nc] = getNumClasses(cl) returns the number of classes the classifier can distinguish among
0001 function [nc] = getNumClasses(cl) 0002 % function [nc] = getNumClasses(cl) 0003 % returns the number of classes the classifier can distinguish among 0004 0005 nc = cl.numClasses;