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 mean function expressed in terms of it's output. The first derivative of the Logit link function in terms of y = f(x) is given by |
|
Function ( double x ) : double |
The Logit link function. The inverse Logit link function is given by |
|
Inverse ( double x ) : double |
The Logit mean (activation) function. The inverse Logit link function is given by |
|
Log ( double x ) : double |
The logarithm of the inverse of the link function.
|
|
LogitLinkFunction ( ) : System |
Initializes a new instance of the LogitLinkFunction class.
|
|
LogitLinkFunction ( double beta, double constant ) : System |
Creates a new Logit 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 |
public LogitLinkFunction ( double beta, double constant ) : System | ||
beta | double | The beta value. Default is 1. |
constant | double | The constant value. Default is 0. |
return | System |