Pre emphasis filter in MFCC

 Réponse acceptée

Wayne King
Wayne King le 23 Mar 2013
Modifié(e) : Wayne King le 23 Mar 2013

0 votes

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

Plus de réponses (0)

Catégories

En savoir plus sur Audio Processing Algorithm Design dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by