notch filter using butter
이전 댓글 표시
>> [z p k] = butter(10, [55 65]./(fs/2), 'stop'); >> [sos,g]=zp2sos(z,p,k); >> h=dfilt.df2sos(sos,g); >> fvtool(h);
how do apply this to my signal...
댓글 수: 1
Jonathan LeSage
2013년 10월 14일
Could you provide more information on what you are trying to accomplish? Are you just trying to filter a signal in the MATLAB environment?
답변 (1개)
Honglei Chen
2013년 10월 14일
If your signal is x, just do
y = filter(h,x)
카테고리
도움말 센터 및 File Exchange에서 Signal Processing Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!