Functions Index :: A :: ArrayStDev

[<< up one level]

Module:

array :: functions

Definition:

ArrayStDev(string array)

Description:

Returns the standard deviation of array elements.

array must contain only numbers, else the function will throw an error or the results will be unpredictable.

Examples:

a1 = "1, 1, 2, 0, 1"

sd = a1.ArrayStDev() # sd == 0.7071

 

[<< top]