- Math::StandardDeviation(x, y, …): number
-
Calculates standard deviation for given series.
x, y, … |
number, Array |
Comma separated numbers or array(s) of numbers |
Return
Standard deviation of given series.
println(Math::StandardDeviation([2, 4, 4, 4, 5, 5, 7, 11])) // Will print "2.537223"
println(Math::StandardDeviation(2, 4, 4, 4, [5, 5, 7, 11])) // Will print "2.537223"