|
Contents | Previous | Next | Subchapters |
| Syntax |
colstd(x) |
| See Also | colstd , mlmode_mean , colmean |
The standard deviation of an N element vector y is
--------------------------------------
/ _ 2 _ 2
/ | y - y | + ... + | y - y |
\ / 1 N
\ / -------------------------------------
\/ N - 1
where
_ 1
y = --- ( y + ... + y )
N 1 N
x = [0, 2, 4];
std(x)
O-Matrix will respond
2