필터 지우기
필터 지우기

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);
  댓글 수: 1
Kirthika
Kirthika 2012년 2월 16일
thanks a lot..will try this..

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Digital Filtering에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by