Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 559 Bytes

File metadata and controls

21 lines (17 loc) · 559 Bytes

Math::StandardDeviation

Math::StandardDeviation(x, y, …​): number

Calculates standard deviation for given series.

Table 1. Parameters

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"