29 lines
473 B
Plaintext
29 lines
473 B
Plaintext
|
|
{{alias}}( k )
|
|
Returns the excess kurtosis of a chi-squared distribution.
|
|
|
|
If provided `NaN` as any argument, the function returns `NaN`.
|
|
|
|
If provided `k <= 0`, the function returns `NaN`.
|
|
|
|
Parameters
|
|
----------
|
|
k: number
|
|
Degrees of freedom.
|
|
|
|
Returns
|
|
-------
|
|
out: number
|
|
Excess kurtosis.
|
|
|
|
Examples
|
|
--------
|
|
> var v = {{alias}}( 9.0 )
|
|
~1.333
|
|
> v = {{alias}}( 1.5 )
|
|
8.0
|
|
|
|
See Also
|
|
--------
|
|
|