Package org.hipparchus.analysis.function
Class Logit
java.lang.Object
org.hipparchus.analysis.function.Logit
- All Implemented Interfaces:
UnivariateDifferentiableFunction,UnivariateFunction
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classParametric function where the input array contains the parameters of the logit function, ordered as follows: Lower bound Higher bound -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiondoublevalue(double x) Compute the value of the function.<T extends Derivative<T>>
Tvalue(T t) Compute the value for the function.
-
Constructor Details
-
Logit
public Logit()Usual logit function, where the lower bound is 0 and the higher bound is 1. -
Logit
public Logit(double lo, double hi) Logit function.- Parameters:
lo- Lower bound of the function domain.hi- Higher bound of the function domain.
-
-
Method Details
-
value
Compute the value of the function.- Specified by:
valuein interfaceUnivariateFunction- Parameters:
x- Point at which the function value should be computed.- Returns:
- the value of the function.
- Throws:
MathIllegalArgumentException
-
value
Compute the value for the function.- Specified by:
valuein interfaceUnivariateDifferentiableFunction- Type Parameters:
T- the type of the field elements- Parameters:
t- the point for which the function value should be computed- Returns:
- the value
- Throws:
MathIllegalArgumentException- if parameter is outside of function domain
-