Accord.Statistics.Links.ProbitLinkFunction.Log C# (CSharp) Method

Log() public method

The logarithm of the inverse of the link function.
public Log ( double x ) : double
x double A transformed value.
return double
        public double Log(double x)
        {
            return Normal.Log(x);
        }