function meandev
Calculate the mean deviation of given array, optionally omitting a value. This is defined as 1/sqrt(n-1)*stddev(a).
Syntax
result = meandev(a [, omit])
Arguments
a: | The array which mean deviation from the average should be returned. |
omit: | An optional value which should be ignored. |
See also
function stddev
function avg