Returns the incomplete gamma function at a given value.

Namespace:  CenterSpace.NMath.Stats
Assembly:  NMathStats (in NMathStats.dll) Version: 3.4.0.0

Syntax

C#
public static double IncompleteGamma(
	double a,
	double x
)
Visual Basic (Declaration)
Public Shared Function IncompleteGamma ( _
	a As Double, _
	x As Double _
) As Double
Visual C++
public:
static double IncompleteGamma(
	double a, 
	double x
)

Parameters

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

Return Value

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

See Also