RMS of sampled signal
    3 views (last 30 days)
  
       Show older comments
    
I have a signal sampled at 5000 samples per second . and I have 5 second . plz help me to find the RMS value of the ac component of the waveform of this signal
0 Comments
Accepted Answer
  Walter Roberson
      
      
 on 25 Jan 2016
        ac_signal = YourSignal - mean(YourSignal(:));
rms = sqrt( mean(ac_signal.^2) );
1 Comment
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

