pBeta¶
- pBeta(p1, p2, x, tail=False)¶
Cumulative distribution function of a Beta distribution on
.
- Parameters:
- alphafloat,
Parameter
.
- betafloat,
Parameter
.
- xfloat
Location.
- tailbool
Tail flag.
Default value is False.
If True, the complementary CDF is computed.
- alphafloat,
- Returns:
- p: float
The CDF or the complementary CDF at
.
Notes
The probability density function is defined as:
with
and where
denotes Euler’s beta function
Beta()
.Examples
>>> import openturns as ot >>> cdf = ot.DistFunc.pBeta(2.5, 3.5, 0.9)