Mwnci stdev() Function

Syntax

stdev(array)

Description

The stdev() function returns returns the standard deviation of a given data set.

Example

include("stats")
Data=[1,4,7,3,9,20,22]
SD=stdev(Data)
println("The standard deviation of: ", Data, " is ", SD)


The standard deviation of: [1, 4, 7, 3, 9, 20, 22] is 8.343802947040851