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!