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 ?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Aberfoth
am 23 Okt. 2015
Beantwortet: rabia aziz
am 26 Jun. 2022
i dont know how to design a notch filter
0 Kommentare
Akzeptierte Antwort
Rick Rosson
am 23 Okt. 2015
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;
...
...
2 Kommentare
Ananya Shrivastav
am 14 Apr. 2020
zeros = [ exp(j*phi) ; exp(-j*phi) ];
what does this mean? which formula is it?
Weitere Antworten (1)
rabia aziz
am 26 Jun. 2022
- Design and code a simple notch filter using pole zero approach.
0 Kommentare
Siehe auch
Kategorien
Mehr zu Digital Filter Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!