RMS question plss help me
1 次查看(过去 30 天)
显示 更早的评论
just to know,how make the coding for the find the RMS??based on the data like(0.234,0.2338,0.255,3.456,5.3453) the data save in txt
0 个评论
回答(1 个)
Craig Cowled
2013-5-15
Mohd, if you have the Signal Processing Toolbox, you can use the rms function like this:
X = [0.234 0.2338 0.255 3.456 5.3453];
X_rms = rms(X);
1 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!