RMS amplitude
    4 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
How can I divide a sound wave by its rms amplitude?
0 Commenti
Risposta accettata
  Geoff
      
 il 17 Apr 2012
        I gave an answer today that required an RMS calculation.
You can make a throw-away function for RMS:
RMS = @(x) sqrt(mean(x.^2));
And then to answer your question:
signal = signal / RMS(signal);
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!


