ROOT MEAN SQUARED(RMS)

조회 수: 2 (최근 30일)
OGUNGBEMI Ezekiel
OGUNGBEMI Ezekiel 2021년 8월 16일
댓글: Star Strider 2021년 8월 16일
Hi everyone, I need your kind and urgent assistance on this RMS code i run on my system. kindly assist me with the correction of this code on RMS.
Thanks in anticipation.
MATLAB CODE IS :
clear all; close all; clc;
V=1;
ch=0.2;
Y=0.5;
q1=0;
q2=0;
p1=0.2;
E=0.2;
p2=sqrt(2*E- p1^2);
dt=1/5;
fs=1/dt;
tspan=100:dt:1000;
K=[0 0.01 0.021 0.022790 1.5];
m=length(K);
for c=1:m;
[t{c},x{c}]=ode23tb(@(t,x)TH(t,x,ch,V,Y,K(c)),tspan,[q1 q2 p1 p2]);
end
Y=x{:,1};
Z=x{:,2};
P=x{:,3};
T=x{:,4};
G=x{:,5};
Time=0:0.001:5;
T = Time(2)-Time(1);
Fs = 1/T;
L = nume1(Time);
Disp_Data1 = (Y(:,1));
M_Data1 = mean(Disp_Data1);
RMS_data1= rms(Disp_Data1);
Disp_Data2 = (Y(:,2));
M_Data2 = mean(Disp_Data2);
RMS_data2= rms(Disp_Data2);
subplot(2,1,1)
plot(Time,Disp_Data1);
hold on;
plot(Time,Disp_Data2);
MATLAB ERROR:
Undefined function or variable 'nume1'.
Error in Rms (line 26)
L = nume1(Time);
>>

답변 (1개)

Star Strider
Star Strider 2021년 8월 16일
l ~= 1
  댓글 수: 3
OGUNGBEMI Ezekiel
OGUNGBEMI Ezekiel 2021년 8월 16일
and this error again using l ~= 1
Undefined function or variable 'l'.
Error in Rms (line 26)
l ~= 1;
>>
Star Strider
Star Strider 2021년 8월 16일
I was subtly demonstrating that you have a typographical error in your code.
Substitute: numel for nume1.
.

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

카테고리

Help CenterFile Exchange에서 Graphics Object Properties에 대해 자세히 알아보기

제품


릴리스

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by