pStudent2D

pStudent2D(nu, x1, x2, rho, tail=False)

Cumulative distribution function of a 2-d Student distribution.

Parameters:
nufloat, \nu > 0

The \nu parameter.

x1, x2float

Location.

rhofloat

Correlation coefficient.

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 x1, x2

Examples

>>> import openturns as ot
>>> cdf = ot.DistFunc.pStudent2D(2.5, 0.1, 0.1, 0.5)
>>> cdf = ot.DistFunc.pStudent2D(2.5, 0.1, 0.1, 0.5, True)