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!