compute number of pulses for ECG signal

조회 수: 3 (최근 30일)
hajer
hajer 2011년 12월 13일
hi, how i can compute number of pulses per minute (for ECG signal) in Matlab... plz any one help me :"

답변 (2개)

Daniel Shub
Daniel Shub 2011년 12월 13일
The first step would be to detect the pulses and count them up.
A very simple solution would be to take all the points in the ECG above a threshold, then require that there is some minimum deadtime between heartbeats. You can get the number of pulse with something like:
sum(find(diff(find(x > threshold)) > deadtime))
This will be extremely sensitive to noise and artifacts. If this i homework, you likely want to use a filtering technique that you have covered (maybe a matched filter)

Paulo Silva
Paulo Silva 2011년 12월 13일
Find the number of peaks with the Signal Processing Toolbox™ findpeaks function or one similar function from the FEX
  댓글 수: 1
Daniel Shub
Daniel Shub 2011년 12월 13일
Thank you Paulo, I couldn't remember the name of the findpeaks function.

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

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by