フィルターのクリア

ROOT MEAN SQUARED(RMS)

3 ビュー (過去 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 Center および File ExchangeLine Plots についてさらに検索

製品


リリース

R2016a

Community Treasure Hunt

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

Start Hunting!

Translated by