Click or drag to resize

NMathFunctionsIncompleteGamma(Double, Double) Method

Note: This API is now obsolete.

Returns the incomplete gamma function at a given value.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("Instead use SpecialFunctions.IncompleteGamma()")]
public static double IncompleteGamma(
	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