Click or drag to resize

SpecialFunctionsLogit Method

Computes the logit function, the inverse of the sigmoid logistic function. see: http://en.wikipedia.org/wiki/Logit

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double Logit(
	double p
)

Parameters

p  Double
The parameter for which to compute the logit function. This number should be between 0 and 1.

Return Value

Double
The logarithm of p divided by 1.0 - p.
See Also