REGRESS Summary of this function goes here Inputs reg: a trained regressor data: input data
0001 function [ outs ] = regress( rg, data ) 0002 %REGRESS Summary of this function goes here 0003 % Inputs 0004 % reg: a trained regressor 0005 % data: input data 0006 0007 error(' regress method must be implemented by sub classes ' ); 0008 end 0009