How to extract acoustic samples containing high decibels
1 回表示 (過去 30 日間)
古いコメントを表示
[y,fs]=waveread(‘file.wav’) How can know y content high decibel
0 件のコメント
回答 (1 件)
KSSV
2020 年 9 月 9 日
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 件のコメント
参考
カテゴリ
Help Center および File Exchange で Audio and Video Data についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!