Package org.hipparchus.analysis.function
Class Logit.Parametric
- java.lang.Object
-
- org.hipparchus.analysis.function.Logit.Parametric
-
- All Implemented Interfaces:
ParametricUnivariateFunction
- Enclosing class:
- Logit
public static class Logit.Parametric extends Object implements ParametricUnivariateFunction
Parametric function where the input array contains the parameters of the logit function, ordered as follows:- Lower bound
- Higher bound
-
-
Constructor Summary
Constructors Constructor Description Parametric()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double[]
gradient(double x, double... param)
Computes the value of the gradient atx
.double
value(double x, double... param)
Computes the value of the logit atx
.
-
-
-
Method Detail
-
value
public double value(double x, double... param) throws MathIllegalArgumentException, NullArgumentException
Computes the value of the logit atx
.- Specified by:
value
in interfaceParametricUnivariateFunction
- Parameters:
x
- Value for which the function must be computed.param
- Values of lower bound and higher bounds.- Returns:
- the value of the function.
- Throws:
NullArgumentException
- ifparam
isnull
.MathIllegalArgumentException
- if the size ofparam
is not 2.
-
gradient
public double[] gradient(double x, double... param) throws MathIllegalArgumentException, NullArgumentException
Computes the value of the gradient atx
. The components of the gradient vector are the partial derivatives of the function with respect to each of the parameters (lower bound and higher bound).- Specified by:
gradient
in interfaceParametricUnivariateFunction
- Parameters:
x
- Value at which the gradient must be computed.param
- Values for lower and higher bounds.- Returns:
- the gradient vector at
x
. - Throws:
NullArgumentException
- ifparam
isnull
.MathIllegalArgumentException
- if the size ofparam
is not 2.
-
-