Calculating mean values of a 3D matrix for every rows
3 ビュー (過去 30 日間)
古いコメントを表示
I have a matrix 12x441x1440. 12 is the dimension of time. how can I get 12 average numbers for every month from that matrix
0 件のコメント
採用された回答
Simon Chan
2022 年 3 月 30 日
Try this:
mean(yourmatrix,[2 3]);
4 件のコメント
Bruno Luong
2022 年 3 月 30 日
Look like you have old MATLAB version
mean(mean(yourmatrix,2),3);
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Resizing and Reshaping Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!