Unwanted peaks in the output of a Notch filter
1 次查看(过去 30 天)
显示 更早的评论
Hello, I recently tried to implement an IIR Notch filer that will help me remove the 50 Hz noise in the ECG signal we acquired in the lab. The 50 Hz is getting attenuated but then an unwanted peaking is observed at 48Hz while taking the fft. Is there any way to get the desired 50Hz suppression with minimal peaking of such kind? This is my code:
d1 = designfilt('bandstopiir','FilterOrder',8, ...
'HalfPowerFrequency1',49,'HalfPowerFrequency2',51, ...
'DesignMethod','butter','SampleRate',Fs);
buttLoop1 = filtfilt(d1,X1);
0 个评论
回答(0 个)
另请参阅
类别
在 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!