Pre emphasis filter in MFCC
3 ビュー (過去 30 日間)
古いコメントを表示
The pre emphasis filter is like this:
Y [n] = X [n] -0 . 95 x[n - 1]
What is n here?
0 件のコメント
採用された回答
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).
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Simulation, Tuning, and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!