Accord.Math.Normal.Log C# (CSharp) Method

Log() public static method

Normal cumulative distribution function.
public static Log ( double value ) : double
value double
return double
        public static double Log(double value)
        {
            return 0.5 * Special.Log1p(Special.Erf(value / Constants.Sqrt2));
        }