pStudent¶
- pStudent(*args)¶
Cumulative distribution function of a scalar Student distribution.
- Parameters:
- nufloat,
The parameter.
- xfloat or sequence of float
Location.
- tailbool, optional
Tail flag. Default value is False. If True, the complementary CDF is computed.
- Returns:
- pfloat or sequence of float
The CDF or the complementary CDF at x or at each .
Notes
The probability density function is defined as:
with .
Examples
>>> import openturns as ot >>> cdf = ot.DistFunc.pStudent(2.5, 0.9) >>> cdf = ot.DistFunc.pStudent(2.5, 0.9, True)