RR interval extraction from ECG

14 次查看(过去 30 天)
Hello there!
I am approaching for the first time to ECG analysis to extract the RR interval and, ultimately, compute a PSD estimation using Welch's periodogram. As far as I know, the wavelet method is the most common and the most reliable, but I find it difficult to understand.
Can anyone give me some advice regarding how to analyse ECG data? For example, why do we need to decompose the signal into different levels? And what do those levels mean? Does anyone know other methods to extract the RR interval?
For the moment I am working with the MIT-BIH database.
Thanks to anyone who's willing to help!
Luca

采纳的回答

Star Strider
Star Strider 2020-8-27
If you only want the locations of the R-waves in a normal EKG, use findpeaks or islocalmax.
  10 个评论
Luca Merolla
Luca Merolla 2020-9-7
Hello Star Strider!
Sorry that I keep coming back to this, but could you explain to me why, in this example, after recomposing the signal they plot the squared absolute values?
I plotted both the squared absolute values and the non-squared absolute values and I can't see any difference between the two.
The lines I am referring to are:
wt = modwt(ecgsig,5);
wtrec = zeros(size(wt));
wtrec(4:5,:) = wt(4:5,:);
y = imodwt(wtrec,'sym4');
Where they decompose the ECG waveform with modwt, and then recompose it with imodwt. Then they use findpeaks on the squared absolute values of the signal:
y = abs(y).^2;
[qrspeaks,locs] = findpeaks(y,tm,'MinPeakHeight',0.35,...
'MinPeakDistance',0.150);
Star Strider
Star Strider 2020-9-7
That the squared absolute value does not make a difference in your EKG may simply mean that all the identified R-waves are all greater than 0. Note that in the EKG in that example, many of the R-waves are negative, and those same complexes show peaked T-waves. (This likely indicates an intraventricular conduction system pathology, with aberrant activation. I would have to know more to be sure.) Taking the squared absolute value may not be necessary for the EKGs you are studying.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Signal Analysis 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by