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 ?
2 次查看(过去 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!