public class FlatUnivariate extends R1ToR1
| Constructor and Description |
|---|
FlatUnivariate(double dblLevel)
FlatUnivariate constructor
|
| Modifier and Type | Method and Description |
|---|---|
Differential |
differential(double dblVariate,
double dblOFBase,
int iOrder)
Calculate the Differential
|
double |
evaluate(double dblVariate)
Evaluate for the given variate
|
double |
integrate(double dblBegin,
double dblEnd)
Integrate over the given range
|
derivative, differential, maxima, maxima, minima, minimapublic FlatUnivariate(double dblLevel)
throws java.lang.Exception
dblLevel - The FlatUnivariate Leveljava.lang.Exception - Thrown if the Inputs are invalidpublic double evaluate(double dblVariate)
throws java.lang.Exception
R1ToR1public Differential differential(double dblVariate, double dblOFBase, int iOrder)
R1ToR1differential in class R1ToR1dblVariate - Variate at which the derivative is to be calculateddblOFBase - Base Value for the Objective FunctioniOrder - Order of the derivative to be computedpublic double integrate(double dblBegin,
double dblEnd)
throws java.lang.Exception
R1ToR1