time-to-botec/js/node_modules/@stdlib/stats/iter/stdev/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

27 lines
488 B
Plaintext

{{alias}}( iterator[, mean] )
Computes a correct sample standard deviation over all iterated values.
Parameters
----------
iterator: Object
Input iterator.
mean: number (optional)
Known mean.
Returns
-------
out: number|null
Corrected sample standard deviation.
Examples
--------
> var arr = {{alias:@stdlib/array/to-iterator}}( [ 2.0, -5.0 ] );
> var m = {{alias}}( arr )
~4.95
See Also
--------