Find a mean square root velocity of each row in matrix

I have A 100 by 20 matrix and I want to find a mean square root velocity of each row and divided by a constant C then return the result as a 100 by 1.
Can you help me?
Thank you

 채택된 답변

Star Strider
Star Strider 2015년 10월 23일
The rms function is in the Signal Processing Toolbox. This uses built-in MATLAB funcitons:
V = randi(99, 100, 20); % Create Data
C = 100; % Define Constant ‘C’
VrmsC = sqrt(mean(V.^2,2))/C; % RMS Velocity/C

댓글 수: 2

Hi, Thank you for your reply. Please I have data saved in matrix A(100,20) Code will be VrmsC = sqrt(mean(A.^2,2))/C Is that correct? Thanks
My pleasure.
That is correct, if ‘C’ is a scalar constant.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

dpb
dpb 2015년 10월 23일
v=rms(x,2)/C; % presuming one C; if per row, the define the column vector and use "./C"
doc rms % for details

카테고리

도움말 센터File Exchange에서 Logical에 대해 자세히 알아보기

질문:

2015년 10월 23일

댓글:

2015년 10월 23일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by