Accord.Statistics.Links.CauchitLinkFunction.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 Math.Log(Math.Atan(x) * B + A);
        }