Pre emphasis filter in MFCC

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 日

0 投票

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).

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeSignal Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by