How to calculate the standard deviations of each row of an array and get those as a 1-D array?
69 ビュー (過去 30 日間)
古いコメントを表示
How to calculate the standard deviations of each row of an array and get those as a 1-D array?
0 件のコメント
採用された回答
Azzi Abdelmalek
2015 年 6 月 24 日
編集済み: Azzi Abdelmalek
2015 年 6 月 24 日
M=rand(4,3)
% std for each row
s1=std(M,[],2)
% std for each column
s2=std(M)
その他の回答 (2 件)
Jan
2015 年 6 月 24 日
If you do not know the required command, you can look in the "See also" line of similar commands or use docsearch to search for terms inside the documentation. Even asking your favorite internet search engine is a good idea. All of these ideas are faster and more efficient than asking the forum, so it is recommended to try them at first.
0 件のコメント
jaypal singh
2019 年 1 月 27 日
dear sir,
I have 90000x13 (table).mat file .
here is 1-80000 is 0 label
and 800001-90000 is 1 label
i have to find avg and std for 0 label seperate and for 1 label seperate
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Special Functions についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!