cdf_student_t
function cdf_student_t(x:Real, ν:Real) -> Real
CDF of a Student's variate.
- x: The variate.
- ν: Degrees of freedom.
Return: the cumulative probability.
function cdf_student_t(x:Real, ν:Real, μ:Real, σ2:Real) -> Real
CDF of a Student's variate with location and scale.
- x: The variate.
- ν: Degrees of freedom.
- μ: Location.
- σ2: Squared scale.
Return: the cumulative probability.