Pre emphasis filter in MFCC

3 vues (au cours des 30 derniers jours)
Anurag Pujari
Anurag Pujari le 23 Mar 2013
The pre emphasis filter is like this:
Y [n] = X [n] -0 . 95 x[n - 1]
What is n here?

Réponse acceptée

Wayne King
Wayne King le 23 Mar 2013
Modifié(e) : Wayne King le 23 Mar 2013
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).
  1 commentaire
Anurag Pujari
Anurag Pujari le 23 Mar 2013
Thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Simulation, Tuning, and Visualization dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by