How to design a notch filter that stops the 2 kHz ,with sampling rate 8 kHz,and plot the magnitude response,also plot pole zero locations ?

 Respuesta aceptada

Here's a start:
Fs = 8000; % samples per second
Fc = 2000; % hertz
phi = 2*pi*Fc/Fs; % radians per sample
zeros = [ exp(j*phi) ; exp(-j*phi) ];
poles = 0.9*zeros;
...
...

Más respuestas (1)

Preguntada:

el 23 de Oct. de 2015

Respondida:

el 26 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by