Computes the normalized upper (right) incomplete Gamma function.
Namespace:
Meta.Numerics.FunctionsAssembly: Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)
Syntax
| C# | Visual Basic | Visual C++ |
Parameters
- a
- Double
The shape paraemter, which must be positive.
- x
- Double
The argument, which must be non-negative.
Return Value
The value of Γ(a,x)/Γ(x).
Remarks
This function is the complement of the left incomplete Gamma function LeftGamma(Double, Double).
Exceptions
| Exception | Condition |
|---|---|
| System..::.ArgumentOutOfRangeException | a is negative. |
| System..::.ArgumentOutOfRangeException | x is negative. |