cdfStudent

Syntax

cdfStudent(df, X)

Arguments

df is a positive floating number indicating the degree of freedom of a Student’s t-distribution.

X is a numeric scalar or vector.

Details

Return the value of the cumulative distribution function of a Student’s t-distribution.

Examples

$ cdfStudent(1, [-1, 0, 0.5, 1, 2]);
[0.25, 0.5, 0.647584, 0.75, 0.852416]

$ cdfStudent(1, [0.1, 0.3, 0.5, 0.7, 0.9]);
[0.531726, 0.592774, 0.647584, 0.6944, 0.733262]