means of the 3rd dimension of a matrix
4 ビュー (過去 30 日間)
古いコメントを表示
AA = rand(3) I want a 2d matrix BB containing means of 3rd dimension of matrix A How I can do this smartly? Thanks
3 件のコメント
採用された回答
Walter Roberson
2013 年 10 月 21 日
BB = mean(A, 3);
2 件のコメント
Walter Roberson
2013 年 10 月 21 日
std(A,0,3)
As could be determined by looking at the documentation for std()
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Descriptive Statistics についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!