Pre emphasis filter in MFCC

13 次查看(过去 30 天)
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).

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Signal Processing Toolbox 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by