edu.udo.cs.yale.operator.generator
Class RegressionFunction

java.lang.Object
  extended by edu.udo.cs.yale.operator.generator.RegressionFunction
All Implemented Interfaces:
TargetFunction
Direct Known Subclasses:
ComplicatedFunction, ComplicatedFunction2, NonLinearFunction, OneVariableNonLinearFunction, PolynomialFunction, RandomFunction, SimpleSinusFunction, SimpleSuperpositionFunction, SincFunction, SinusFrequencyFunction, SinusFunction, SquarePulseFunction, SumFunction, TriangularFunction

public abstract class RegressionFunction
extends java.lang.Object
implements TargetFunction

A target function for regression labels, i.e. continous numercial labels.

Version:
$Id: RegressionFunction.java,v 1.3 2006/08/03 14:39:30 ingomierswa Exp $
Author:
Ingo Mierswa

Nested Class Summary
 
Nested classes/interfaces inherited from interface edu.udo.cs.yale.operator.generator.TargetFunction
TargetFunction.FunctionException
 
Field Summary
private  double lower
           
private  double upper
           
 
Constructor Summary
RegressionFunction()
           
 
Method Summary
 double[] createArguments(int dimension, RandomGenerator random)
          Creates and returns a number of arguments.
 Attribute getLabel()
          Returns the label attribute.
 void init(RandomGenerator random)
          Does nothing.
 void setLowerArgumentBound(double lower)
          Sets the lower bound for the arguments.
 void setTotalNumberOfAttributes(int number)
          Does nothing.
 void setTotalNumberOfExamples(int number)
          Does nothing.
 void setUpperArgumentBound(double upper)
          Sets the upper bound for the arguments.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface edu.udo.cs.yale.operator.generator.TargetFunction
calculate
 

Field Detail

lower

private double lower

upper

private double upper
Constructor Detail

RegressionFunction

public RegressionFunction()
Method Detail

init

public void init(RandomGenerator random)
Does nothing.

Specified by:
init in interface TargetFunction


setLowerArgumentBound

public void setLowerArgumentBound(double lower)
Description copied from interface: TargetFunction
Sets the lower bound for the arguments.

Specified by:
setLowerArgumentBound in interface TargetFunction


setUpperArgumentBound

public void setUpperArgumentBound(double upper)
Description copied from interface: TargetFunction
Sets the upper bound for the arguments.

Specified by:
setUpperArgumentBound in interface TargetFunction


setTotalNumberOfExamples

public void setTotalNumberOfExamples(int number)
Does nothing.

Specified by:
setTotalNumberOfExamples in interface TargetFunction


setTotalNumberOfAttributes

public void setTotalNumberOfAttributes(int number)
Does nothing.

Specified by:
setTotalNumberOfAttributes in interface TargetFunction


getLabel

public Attribute getLabel()
Description copied from interface: TargetFunction
Returns the label attribute.

Specified by:
getLabel in interface TargetFunction


createArguments

public double[] createArguments(int dimension,
                                RandomGenerator random)
Description copied from interface: TargetFunction
Creates and returns a number of arguments.

Specified by:
createArguments in interface TargetFunction



Copyright © 2001-2006