Returns the standard deviation, a measure of the spread of a distribution, of the array elements.
_numbers | The array from which the standard deviation is computed ARRAY |
_ddof | The delta degrees of freedom [optional] <SCALAR> (default: 0) |
_ddof = 0 | Population standard deviation |
_ddof = 1 | Sample standard deviation |
_stdDev | The standard deviation <SCALAR> |
// returns roughly 5.564 [[1,4,16,4,1]] call CBA_fnc_standardDeviation; // returns roughly 6.221 [[1,4,16,4,1], 1] call CBA_fnc_standardDeviation;
Kex