time-to-botec/squiggle/node_modules/@stdlib/stats/base/dists/chi/mean/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
466 B
Plaintext

{{alias}}( k )
Returns the expected value of a chi 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
Expected value.
Examples
--------
> var v = {{alias}}( 11.0 )
~3.242
> v = {{alias}}( 4.5 )
~2.008
See Also
--------