signal processing in ecg

can you tell me the matlab codes to bandpass the ecg signal to 1-35hz?

2 个评论

what is your sampling frequency?
sampling frequency is 360...

请先登录,再进行评论。

回答(1 个)

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);

类别

标签

尚未输入任何标签。

提问:

2012-2-16

Community Treasure Hunt

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

Start Hunting!

Translated by