ILNumerics - Technical Application Development
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
The logarithm of x divided by 1.0 - x.
Evaluates the inverse of the sigmoid logistic function.
For more details about this function, see Wikipedia - Logit function.
[ILNumerics Computing Engine]
Namespace: ILNumerics
Assembly: ILNumerics.Computing (in ILNumerics.Computing.dll) Version: 5.5.0.0 (5.5.7503.3146)
Syntax
Parameters
- x
- Type: ILNumericsInArrayDouble
point defined between 0 and 1.
Return Value
Type: RetArrayDoubleThe logarithm of x divided by 1.0 - x.
Remarks
- If x is null, an ArgumentNullException will be thrown.
- If x is empty, an empty array will be returned.
- If any element of x is xi ≥ 1.0, double.NaN will be returned at that element.
- If any element of x is xi ≤ 0.0, double.NaN will be returned at that element.
- If any element of x is xi == 1.0, double.PositiveInfinity will be returned at that element.
- If any element of x is xi == 0.0, double.NegativeInfinity will be returned at that element.
[ILNumerics Computing Engine]
See Also