How to extract acoustic samples containing high decibels
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
[y,fs]=waveread(‘file.wav’) How can know y content high decibel
0 Kommentare
Antworten (1)
KSSV
am 9 Sep. 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 Kommentare
Siehe auch
Kategorien
Mehr zu Audio and Video Data finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!