Finding energy of speech signal
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi all. I have speech signal, and I divided it into frames with 150 samples. How can I calculate the energy of each frame? I'm trying to decide which frame is voiced or unvoiced. by looking their energy.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/160966/image.jpeg)
0 commentaires
Réponses (1)
Baltam
le 12 Avr 2016
Modifié(e) : Baltam
le 12 Avr 2016
You could take the rms value of all columns of x. After that, define your own threshold to determine what is speech and what isn't.
x_rms = rms(x,1); % this gives a row with the root mean square values of the collumns/frames.
Kind regards, Baltam
0 commentaires
Voir également
Catégories
En savoir plus sur Audio Processing Algorithm Design dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!