SpecialFunctionsGammaLowerRegularized Method |
Returns the lower incomplete regularized gamma function
P(a,x) = 1/Gamma(a) * int(exp(-t)t^(a-1),t=0..x) for real a > 0, x > 0.
Namespace: Altaxo.CalcAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static double GammaLowerRegularized(
double a,
double x
)
Parameters
- a Double
- The argument for the gamma function.
- x Double
- The upper integral limit.
Return Value
DoubleThe lower incomplete gamma function.
See Also