How to extract acoustic samples containing high decibels
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
[y,fs]=waveread(‘file.wav’) How can know y content high decibel
0 Commenti
Risposte (1)
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
Vedere anche
Categorie
Scopri di più su Audio and Video Data in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!