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 回表示 (過去 30 日間)
古いコメントを表示
i dont know how to design a notch filter
0 件のコメント
採用された回答
Rick Rosson
2015 年 10 月 23 日
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 件のコメント
Ananya Shrivastav
2020 年 4 月 14 日
zeros = [ exp(j*phi) ; exp(-j*phi) ];
what does this mean? which formula is it?
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Digital Filter Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!