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 ?

 採用された回答

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 件のコメント

Aberfoth
Aberfoth 2015 年 10 月 23 日
thank you sir
zeros = [ exp(j*phi) ; exp(-j*phi) ];
what does this mean? which formula is it?

サインインしてコメントする。

その他の回答 (1 件)

rabia aziz
rabia aziz 2022 年 6 月 26 日
  • Design and code a simple notch filter using pole zero approach.

カテゴリ

質問済み:

2015 年 10 月 23 日

回答済み:

2022 年 6 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by