Click or drag to resize

SpecialFunctionsGammaLowerIncomplete Method

Returns the lower incomplete gamma function gamma(a,x) = int(exp(-t)t^(a-1),t=0..x) for real a > 0, x > 0.

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double GammaLowerIncomplete(
	double a,
	double x
)

Parameters

a  Double
The argument for the gamma function.
x  Double
The upper integral limit.

Return Value

Double
The lower incomplete gamma function.
See Also