Home > @Regressor > Regressor.m

Regressor

PURPOSE ^

constructor for the regressor class

SYNOPSIS ^

function [ rg ] = Regressor()

DESCRIPTION ^

 constructor for the regressor class
   Regressor class is a base class for all regressors

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function [ rg ] = Regressor()
0002 % constructor for the regressor class
0003 %   Regressor class is a base class for all regressors
0004 
0005 rg.weights = [];
0006 
0007 rg = class(rg, 'Regressor');
0008 
0009 end
0010

Generated on Sun 29-Sep-2013 01:25:24 by m2html © 2005