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);
        }