필터 지우기
필터 지우기

how to remove 60hz noise from an ECG signal using notch filter in matlab

조회 수: 4 (최근 30일)
Aberfoth
Aberfoth 2015년 11월 4일
편집: Aberfoth 2015년 11월 4일
The code for notch filter is ready
>>>>>>>>>>>
fs=300;
f0=60;
r=0.99;
b0=1;
b1=-2*cos(2*pi*f0/fs);
b2=1;
a0=1;
a1=-2*r*cos(2*pi*f0/fs);
a2=r*r;
b=[b2,b1,b0];
a=[a2,a1,a0];
[h,w]=freqz(b,a);
hf=abs(h);
figure(1);
plot(w*fs/(2*pi),hf);
>>>>>>>>
the ecg data is also available..
How to interface these notch filter and given ECG data ?

답변 (0개)

카테고리

Help CenterFile Exchange에서 ECG / EKG에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by