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!