Accord.Math.Special.Ierfc C# (CSharp) 메소드

Ierfc() 공개 정적인 메소드

Inverse complemented error function (Erfc(double).
public static Ierfc ( double y ) : double
y double
리턴 double
        public static double Ierfc(double y)
        {
            double s = Normal.Inverse(-0.5 * y + 1);
            double r = s * Math.Sqrt(2) / 2.0;
            return r;
        }