Esempio n. 1
0
        GammaRegularized(double a, double x)
        {
            if (a < 0.0)
            {
                throw new ArgumentOutOfRangeException("a", Properties.LocalStrings.ArgumentNotNegative);
            }

            if (x < 0.0)
            {
                throw new ArgumentOutOfRangeException("x", Properties.LocalStrings.ArgumentNotNegative);
            }

            return(GammaRegularizedAlgorithm.GammaRegularized(a, x));
        }
Esempio n. 2
0
 GammaRegularizedInverse(double a, double y0)
 {
     return(GammaRegularizedAlgorithm.GammaRegularizedInverse(a, y0));
 }