Package libai.common.functions
Class Identity
- java.lang.Object
-
- libai.common.functions.Identity
-
- All Implemented Interfaces:
java.io.Serializable,Function
public class Identity extends java.lang.Object implements Function
Identity function f(x) = x; The first derivate of I(x), I'(x) = 1.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Identity()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doubleeval(double x)Function to evaluate.FunctiongetDerivate()Evaluate the first derivate of this function f'(x)
-
-
-
Method Detail
-
eval
public double eval(double x)
Description copied from interface:FunctionFunction to evaluate.
-
getDerivate
public Function getDerivate()
Description copied from interface:FunctionEvaluate the first derivate of this function f'(x)- Specified by:
getDerivatein interfaceFunction- Returns:
- a new Function object with the derivate function.
-
-