MATLAB: Standard deviation array double

standard deviation

How to make the standard deviation of a double array??

Best Answer

Use std():
sd = std(yourDoubleArray(:))