qGamma¶
- qGamma(k, p, tail=False)¶
Quantile of a Gamma distribution on .
- Parameters:
- kfloat
Shape parameter with .
- xfloat
- pfloat, in
The probability.
- tailbool, optional
Tail flag. Default value is False. If True, the quantile associated to is computed.
- Returns:
- qfloat
The quantile of order or .
Notes
The probability density function is defined as:
with .
Examples
>>> import openturns as ot >>> q = ot.DistFunc.qGamma(2.5, 0.95) >>> q = ot.DistFunc.qGamma(2.5, 0.95, True)