repl.txt (546B)
1 2 {{alias}}( v ) 3 Returns the excess kurtosis of a Student's t distribution. 4 5 If provided `NaN` as any argument, the function returns `NaN`. 6 7 If provided `v <= 2`, the function returns `NaN`. 8 9 If provided `2 < v <= 4`, the function returns positive infinity. 10 11 Parameters 12 ---------- 13 v: number 14 Degrees of freedom. 15 16 Returns 17 ------- 18 out: number 19 Excess kurtosis. 20 21 Examples 22 -------- 23 > var v = {{alias}}( 11.0 ) 24 ~0.857 25 > v = {{alias}}( 4.5 ) 26 12.0 27 28 See Also 29 -------- 30