std
std(a, b, c, ...)
std(A)
std(A, dimension)
std(A, normalization)
std(A, dimension, normalization)
Compute the standard deviation of all values, defined as std(A) = sqrt(variance(A)). Optional parameter normalization can be "unbiased" (default), "uncorrected", or "biased".
Try it yourself:
$1 | std(2, 4, 6)
| |
$2 | std([2, 4, 6, 8])
| |
$3 | std([2, 4, 6, 8], "uncorrected")
| |
$4 | std([2, 4, 6, 8], "biased")
| |
$5 | std([1, 2, 3; 4, 5, 6])
|