public static double UpperIncompleteGamma(
double a,
double x
)
Public Shared Function UpperIncompleteGamma (
a As Double,
x As Double
) As Double
public:
static double UpperIncompleteGamma(
double a,
double x
)
static member UpperIncompleteGamma :
a : float *
x : float -> float
The upper incomplete Gamma function is obtained by carrying out the Gamma function integration from x to infinity. It therefore ranges from Γ(a) to zero as x varies from zero to infinity.
ArgumentOutOfRangeException | a is negative, or x is negative. |