standard deviation array double
1 次查看(过去 30 天)
显示 更早的评论
How to make the standard deviation of a double array??
0 个评论
采纳的回答
Image Analyst
2019-3-3
Use std():
sd = std(yourDoubleArray(:))
1 个评论
Steven Lord
2019-3-3
If you're using release R2018b or later you can use the 'all' flag to compute the standard deviation of the array as a whole.
std(yourDoubleArray, 0, 'all')
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Shifting and Sorting Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!