Accord.Statistics.Links.AbsoluteLinkFunction.Derivative C# (CSharp) Method

Derivative() public method

First derivative of the Inverse function.
The first derivative of the absolute link function is given by f'(x) = B.
public Derivative ( double x ) : double
x double The input value.
return double
        public double Derivative(double x)
        {
            return B;
        }