Returns a function that evaluates the Incomplete Gamma function.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static Func<double, double> IncompleteGamma(
double a
)
Public Shared Function IncompleteGamma (
a As Double
) As Func(Of Double, Double)
public:
static Func<double, double>^ IncompleteGamma(
double a
)
static member IncompleteGamma :
a : float -> Func<float, float>
Parameters
- a
- Type: SystemDouble
A real number.
Return Value
Type:
FuncDouble,
DoubleA function that evaluates the incomplete Gamma function
with parameter
a.
The term incomplete here refers to the fact
that the integral in the definition
of the Gamma function is taken from its second argument
onwards instead of from 0.
Reference