function [outs] = computeOutputs(cl, examples) computes the classification outputs for the given examples Inputs: examples: set of example patterns to be classified
0001 function [outs] = computeOutputs(cl, examples) 0002 % function [outs] = computeOutputs(cl, examples) 0003 % computes the classification outputs for the given examples 0004 % 0005 % Inputs: 0006 % examples: set of example patterns to be classified 0007 0008 error('''computeOutputs'' function must be implemented by the inheriting class');