signal processing in ecg

6 次查看(过去 30 天)
Kirthika
Kirthika 2012-2-16
can you tell me the matlab codes to bandpass the ecg signal to 1-35hz?
  2 个评论
Wayne King
Wayne King 2012-2-16
what is your sampling frequency?
Kirthika
Kirthika 2012-2-16
sampling frequency is 360...

请先登录,再进行评论。

回答(1 个)

Wayne King
Wayne King 2012-2-16
There are many ways with fdesign.bandpass and if you just remove the mean from the signal, I think you can just use fdesign.lowpass in this application, but here is one way:
d = fdesign.bandpass( 'N,F3dB1,F3dB2',20,1,35,360);
Hd = design(d);
Then filter the signal with:
output = filter(Hd,input);

标签

尚未输入任何标签。

Community Treasure Hunt

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

Start Hunting!

Translated by