qStudent¶
- qStudent(*args)¶
Quantile of a scalar Student distribution.
- Parameters:
- nufloat,
The parameter.
- 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.qStudent(2.0, 0.95)