Click or drag to resize

NMathFunctionsIncompleteGammaComplement Method

Note: This API is now obsolete.

Returns the complement of the incomplete gamma function, P(a,x), at a given value. The complement of the incomplete gamma function P(a,x) is defined to be 1.0 - P(a,x)

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Instead use SpecialFunctions.IncompleteGammaComplement()")]
public static double IncompleteGammaComplement(
	double a,
	double x
)

Parameters

a  Double
A parameter describing the incomplete gamma function.
x  Double
A point on the x-axis.

Return Value

Double
The integral from x to infinity of (t^(a-1) * e^-t)dt.
See Also