Ejemplo n.º 1
0
        ErfInverse(double x)
        {
            if (x < -1.0 || x > 1.0)
            {
                throw new ArgumentOutOfRangeException("x", x, Properties.LocalStrings.ArgumentInIntervalXYInclusive(-1, 1));
            }

            return(ErrorFunctionAlgorithm.ErfInverse(x));
        }
Ejemplo n.º 2
0
 Erf(double x)
 {
     return(ErrorFunctionAlgorithm.Erf(x));
 }