Azzera filtri
Azzera filtri

Pre emphasis filter in MFCC

13 visualizzazioni (ultimi 30 giorni)
Anurag Pujari
Anurag Pujari il 23 Mar 2013
The pre emphasis filter is like this:
Y [n] = X [n] -0 . 95 x[n - 1]
What is n here?

Risposta accettata

Wayne King
Wayne King il 23 Mar 2013
Modificato: Wayne King il 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).

Più risposte (0)

Categorie

Scopri di più su Signal Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by