RMS of sampled signal
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commenti
Risposta accettata
Walter Roberson
il 25 Gen 2016
ac_signal = YourSignal - mean(YourSignal(:));
rms = sqrt( mean(ac_signal.^2) );
1 Commento
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!