Calculating the RMS (Root-Mean-Square) Average

조회 수: 115 (최근 30일)
Matthew Lintern
Matthew Lintern 2016년 7월 28일
댓글: Star Strider 2023년 12월 7일
Hi all. So I'm trying to calculate the rms average. The image below shows the exact question
. The answer I get after running my script is 2.5. However, when I calculate this by hand I get 6.20. Either way, one of them is wrong. Any help checking my code is greatly appreciated!
N=input('Input the number of data points:');
for ii=1:N
A=input('Enter the value of x: '); % A is the variable to read in user input
x_rms=sqrt(1/N.*(sum(x(ii).^2)));
end
fprintf('The root-mean-square value is:%d\n',x_rms)
  댓글 수: 1
CHETARIYA SUNIL
CHETARIYA SUNIL 2022년 5월 15일
hello I'm tring but geting propted by this:
rms_voltage
Input the number of data points:
4
Enter the value of x:
1:0.5:2
Unrecognized function or variable 'x'.
Error in rms_voltage (line 6)
x_rms=sqrt(1/N.*(sum(x(ii).^2)));

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

채택된 답변

Star Strider
Star Strider 2016년 7월 28일
You’re almost there. Collect the numbers in the loop, then do the calculation after the loop:
N=inputdlg('Input the number of data points:'); N = str2num(N{:});
for ii=1:N
A=inputdlg('Enter the value of x: '); A = str2num(A{:});% A is the variable to read in user input
x(ii) = A;
end
x_rms=sqrt(1/N.*(sum(x.^2)));
fprintf('The root-mean-square value is: %f\n',x_rms)
I used the inputdlg function because I prefer it. You can substitute your input calls.
  댓글 수: 4
idris
idris 2023년 12월 7일
We venerate loyalty to the developers of MATLAB as the tool "inputdlg" is okay.
Star Strider
Star Strider 2023년 12월 7일
@idris— What?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by