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.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic 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
DoubleIncomplete regularized Gamma function of arguments a, z0 and z1.
See Also