Click or drag to resize
Accord.NET (logo)

LogitLinkFunctionInverse Method

The Logit mean (activation) function.

Namespace:  Accord.Statistics.Links
Assembly:  Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax
public double Inverse(
	double x
)
Request Example View Source

Parameters

x
Type: SystemDouble
A transformed value.

Return Value

Type: Double
The reverse transformed value.

Implements

ILinkFunctionInverse(Double)
Remarks
The inverse Logit link function is given by g(x) = 1.0 / (1.0 + Math.Exp(-z) in which z = B * x + A.
See Also