standard deviation array double

5 ビュー (過去 30 日間)
Guido Pastore
Guido Pastore 2019 年 3 月 3 日
コメント済み: Steven Lord 2019 年 3 月 3 日
How to make the standard deviation of a double array??

採用された回答

Image Analyst
Image Analyst 2019 年 3 月 3 日
Use std():
sd = std(yourDoubleArray(:))
  1 件のコメント
Steven Lord
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 ExchangeData Types についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by