How to extract acoustic samples containing high decibels

1 回表示 (過去 30 日間)
Esraa abd Altoni
Esraa abd Altoni 2020 年 9 月 9 日
コメント済み: Esraa abd Altoni 2020 年 9 月 9 日
[y,fs]=waveread(‘file.wav’) How can know y content high decibel

回答 (1 件)

KSSV
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 件のコメント
KSSV
KSSV 2020 年 9 月 9 日
If the formula is correct..then what you did is correct.
Esraa abd Altoni
Esraa abd Altoni 2020 年 9 月 9 日
I know the formula is corret but I don’t know if this formula calculates the decibels

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeAudio and Video Data についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by