Accord.Statistics.Links.IdentityLinkFunction.Derivative2 C# (CSharp) 메소드

Derivative2() 공개 메소드

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 f'(y) = B.
public Derivative2 ( double y ) : double
y double The reverse transformed value.
리턴 double
        public double Derivative2(double y)
        {
            return B;
        }