Method | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
Derivative ( double x ) : double |
First derivative of the Inverse function. The first derivative of the identity link function is given by |
|
Derivative2 ( double y ) : double |
First derivative of the Inverse function expressed in terms of it's output. The first derivative of the identity link function in terms of y = f(x) is given by |
|
Function ( double x ) : double |
The Probit link function. The Probit link function is given by |
|
Inverse ( double x ) : double |
The Probit mean (activation) function. The Probit link function is given by |
|
Log ( double x ) : double |
The logarithm of the inverse of the link function.
|
|
ProbitLinkFunction ( ) : System |
Creates a new Probit link function.
|
public Derivative ( double x ) : double | ||
x | double | The input value. |
return | double |
public Derivative2 ( double y ) : double | ||
y | double | The reverse transformed value. |
return | double |
public Function ( double x ) : double | ||
x | double | An input value. |
return | double |
public Inverse ( double x ) : double | ||
x | double | A transformed value. |
return | double |