public static double RightRegularizedGamma(
double a,
double x
)
Public Shared Function RightRegularizedGamma (
a As Double,
x As Double
) As Double
public:
static double RightRegularizedGamma(
double a,
double x
)
static member RightRegularizedGamma :
a : float *
x : float -> float
This function is the complement of the left regularized incomplete gamma function LeftRegularizedGamma(Double, Double). Their values sum to one.
For sufficiently low values of x, this function becomes 1 within floating point precision. To determine its deviation from 1 in this region, use the complementary function LeftRegularizedGamma(Double, Double).
ArgumentOutOfRangeException | a is negative, or x is negative. |