UnivariateDifferentiableFunction, UnivariateFunctionpublic class Logit extends Object implements UnivariateDifferentiableFunction
| Modifier and Type | Class | Description |
|---|---|---|
static class |
Logit.Parametric |
Parametric function where the input array contains the parameters of
the logit function, ordered as follows:
Lower bound
Higher bound
|
| Constructor | Description |
|---|---|
Logit() |
Usual logit function, where the lower bound is 0 and the higher
bound is 1.
|
Logit(double lo,
double hi) |
Logit function.
|
| Modifier and Type | Method | Description |
|---|---|---|
double |
value(double x) |
Compute the value of the function.
|
DerivativeStructure |
value(DerivativeStructure t) |
Simple mathematical function.
|
public Logit()
public Logit(double lo,
double hi)
lo - Lower bound of the function domain.hi - Higher bound of the function domain.public double value(double x)
throws MathIllegalArgumentException
value in interface UnivariateFunctionx - Point at which the function value should be computed.MathIllegalArgumentExceptionpublic DerivativeStructure value(DerivativeStructure t) throws MathIllegalArgumentException
UnivariateDifferentiableFunction classes compute both the
value and the first derivative of the function.
value in interface UnivariateDifferentiableFunctiont - function input valueMathIllegalArgumentException - if parameter is outside of function domainCopyright © 2016–2018 Hipparchus.org. All rights reserved.