pGamma¶
- pGamma(k, x, tail=False)¶
Cumulative distribution function of a Gamma distribution on
.
- Parameters:
- kfloat
Shape parameter
with
.
- xfloat
Location.
- tailbool
Tail flag.
Default value is False.
If True, the complementary CDF is computed.
- Returns:
- p: float
The CDF or the complementary CDF at x.
Notes
The probability density function is defined as:
with
.
Examples
>>> import openturns as ot >>> cdf = ot.DistFunc.pGamma(2.5, 0.9)