Accord.Math.Normal.LogDerivative C# (CSharp) Метод

LogDerivative() публичный статический Метод

Log of the first derivative of Normal cumulative distribution function, also known as the Normal density function.
public static LogDerivative ( double value ) : double
value double
Результат double
        public static double LogDerivative(double value)
        {
            return -Constants.LogSqrt2PI - value * value * 0.5;
        }