Click or drag to resize

AdvancedMathRightRegularizedGamma Method

Computes the normalized upper (right) incomplete Gamma function.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax
public static double RightRegularizedGamma(
	double a,
	double x
)

Parameters

a
Type: SystemDouble
The shape parameter, which must be positive.
x
Type: SystemDouble
The argument, which must be non-negative.

Return Value

Type: Double
The value of Γ(a,x)/Γ(a).
Exceptions
ExceptionCondition
ArgumentOutOfRangeExceptiona is negative or zero, or x is negative.
Remarks

This function is the complement of the left incomplete Gamma function LeftRegularizedGamma(Double, Double).

See Also