Click or drag to resize

GammaRelatedGammaRegularized(Double, Double, Double) Method

Evaluate the incomplete regularized Gamma function Gamma(a,z0,z1) = { integral from z0 to z1 of exp(-t) * t**(a-1) }/Gamma(a) The order of parameters is the same as the Mathematica function GammaRegularized[a,z0,z1].

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

Parameters

a  Double
The function argument.
z0  Double
The lower boundary of integration.
z1  Double
The upper boundary of integration.

Return Value

Double
Incomplete regularized Gamma function of arguments a, z0 and z1.
See Also