RMS amplitude
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Sonia Wiemann
 el 17 de Abr. de 2012
  
    
    
    
    
    Comentada: dpb
      
      
 el 19 de Jul. de 2024
            How can I divide a sound wave by its rms amplitude?
0 comentarios
Respuesta aceptada
  Geoff
      
 el 17 de Abr. de 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 comentario
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


