time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/t/median/docs/repl.txt
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

29 lines
452 B
Plaintext

{{alias}}( v )
Returns the median of a Student's t distribution.
If provided `NaN` as any argument, the function returns `NaN`.
If provided `v < 0`, the function returns `NaN`.
Parameters
----------
v: number
Degrees of freedom.
Returns
-------
out: number
Median.
Examples
--------
> var v = {{alias}}( 11.0 )
0.0
> v = {{alias}}( 4.5 )
0.0
See Also
--------