Accord.Statistics.Links.CauchitLinkFunction.Log C# (CSharp) 메소드

Log() 공개 메소드

The logarithm of the inverse of the link function.
public Log ( double x ) : double
x double A transformed value.
리턴 double
        public double Log(double x)
        {
            return Math.Log(Math.Atan(x) * B + A);
        }