Pre emphasis filter in MFCC

 Respuesta aceptada

Wayne King
Wayne King el 23 de Mzo. de 2013
Editada: Wayne King el 23 de Mzo. de 2013

0 votos

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

Más respuestas (0)

Categorías

Más información sobre Audio Processing Algorithm Design en Centro de ayuda y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by