How to extract acoustic samples containing high decibels

1 visualizzazione (ultimi 30 giorni)
[y,fs]=waveread(‘file.wav’) How can know y content high decibel

Risposte (1)

KSSV
KSSV il 9 Set 2020
To know high values, use max.
[val,idx] = max(f) ;
val
f(idx)
y(idx)
To get the values lying beyond certian given values, use:
idx = f>val ;
f(idx)
y(idx)
  7 Commenti
KSSV
KSSV il 9 Set 2020
If the formula is correct..then what you did is correct.
Esraa abd Altoni
Esraa abd Altoni il 9 Set 2020
I know the formula is corret but I don’t know if this formula calculates the decibels

Accedi per commentare.

Community Treasure Hunt

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

Start Hunting!

Translated by