Pre emphasis filter in MFCC

3 ビュー (過去 30 日間)
Anurag Pujari
Anurag Pujari 2013 年 3 月 23 日
The pre emphasis filter is like this:
Y [n] = X [n] -0 . 95 x[n - 1]
What is n here?

採用された回答

Wayne King
Wayne King 2013 年 3 月 23 日
編集済み: Wayne King 2013 年 3 月 23 日
n is the just the "time" index of the discrete-time signal (in this case a speech signal). You can implement this filter in MATLAB as just
B = [1 -0.95];
y = filter(B,1,x);
where x is the input signal (speech waveform).
  1 件のコメント
Anurag Pujari
Anurag Pujari 2013 年 3 月 23 日
Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeSimulation, Tuning, and Visualization についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by