Special.IncompleteGamma(Double) Method

Returns a function that evaluates the Incomplete Gamma function.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Func<double, double> IncompleteGamma(
	double a
)

Parameters

a  Double
A real number.

Return Value

Func<Double, Double>
A function that evaluates the incomplete Gamma function with parameter a.

Remarks

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.

See Also