double StandardDeviation(double[] values)The standard deviation of the values. σ = (xi − x)2ninExample = Block { ShowStandardDeviation([2, 3, 3, 4]); ShowStandardDeviation([2, 5, 6, 12]);};The standard deviation of 2, 3, 3 and 4 is 0.7071067811865476The standard deviation of 2, 5, 6 and 12 is 3.6314597615834874