Pre emphasis filter in MFCC

 Akzeptierte Antwort

Wayne King
Wayne King am 23 Mär. 2013
Bearbeitet: Wayne King am 23 Mär. 2013

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu Audio Processing Algorithm Design finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by