Standard deviation

dev x     dev[x]

Where x is a numeric list, returns its standard deviation (as the square root of the variance). Applies to all numeric data types and signals an error with temporal types, char and sym.

q)dev 10 343 232 55
134.3484

dev is an aggregate function, equivalent to {sqrt var x}.