Rms calculation of specific rows
1 回表示 (過去 30 日間)
古いコメントを表示
I'd like to calculate rms of 3rd and 4th columns of a 21600x4 matrix (filedata{i}) but I couldn't do it. If you have any idea about how to do I'll be appreciate it. Thanks in advance.
M_Rms(:,:,i)= rms(filedata{i},3);
0 件のコメント
回答 (1 件)
Scott MacKenzie
2021 年 6 月 13 日
編集済み: Scott MacKenzie
2021 年 6 月 13 日
The rms of the data in column 3 in the matrix filedata is
rms(filedata{:,3})
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!