How to operate on each column seperately
1 回表示 (過去 30 日間)
古いコメントを表示
Hi, I have a n*m matrix and I need to calculate the RMS value over each column separately. How can I do this without using 'for'? Thanks
3 件のコメント
採用された回答
Guillaume
2018 年 5 月 8 日
sqrt(mean(yourmatrix.^2))
is all that is needed. mean operates on columns by default.
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!