Computes the incomplete Gamma function.

Namespace:  Meta.Numerics.Functions
Assembly:  Meta.Numerics (in Meta.Numerics.dll) Version: 1.4.0.0 (1.4.0.0)

Syntax

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

Parameters

a
Double
The shape parameter, which must be positive.
x
Double
The argument, which must be non-negative.

Return Value

The value of Γ(a,x).

Remarks

Like the Γ function itself, this function gets large very quickly. For most purposes, you will prefer to use the normalized incomplete gamma functions LeftGamma(Double, Double) and RightGamma(Double, Double).

See Also