Finding energy of speech signal

조회 수: 9 (최근 30일)
jack star
jack star 2016년 4월 12일
편집: Baltam 2016년 4월 12일
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.

답변 (1개)

Baltam
Baltam 2016년 4월 12일
편집: Baltam 2016년 4월 12일
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

카테고리

Help CenterFile Exchange에서 Audio Processing Algorithm Design에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by