How to find QRS complex for this Graph?

17 Ansichten (letzte 30 Tage)
vikash kumar
vikash kumar am 30 Mai 2020
Kommentiert: Star Strider am 31 Mai 2020
This is the one lead of the 12_lead ECG graph.I split is into the 12 part. Now i wanted to find QRS point in the poin. I also attached the xlsx file. Please Help out.

Akzeptierte Antwort

Star Strider
Star Strider am 30 Mai 2020
This is not a trivial problem. This EKG displays the Wolf-Parkinson-White syndrome, so the normal Q-wave is not present. It actually sent me back to Braunwald’s Heart Disease (10th Ed.), P. 665ff since I’ve not seen WPW in a while, to determine what the Q-wave is considered to be in WPW. The best you can hope for in defining the QRS complex is:
D = readmatrix('2nd.xlsx');
t = D(:,1);
EKG = D(:,2);
[lm,pr] = islocalmin(EKG, 'MinProminence',2);
lmix = find(lm);
prr = pr(lmix);
[R,rix] = max(EKG);
figure
plot(t, EKG)
hold on
plot(t(rix), EKG(rix), 'r^')
plot(t(lmix), EKG(lmix), 'gv')
hold off
grid
ylim(ylim*1.25)
text(t(lmix(1)), EKG(lmix(1)), sprintf('\\uparrow\nQ (%.2f ms)', t(lmix(1))), 'VerticalAlignment','top', 'HorizontalAlignment','center')
text(t(rix), EKG(rix), sprintf('R (%.2f ms)\n\\downarrow', t(rix)), 'VerticalAlignment','bottom', 'HorizontalAlignment','center')
text(t(lmix(2)), EKG(lmix(2)), sprintf('\\uparrow\nS (%.2f ms)', t(lmix(2))), 'VerticalAlignment','top', 'HorizontalAlignment','center')
producing:
Note that in WPW, the QRS complex is characteristically wide. It is very difficult to determine the correct QRS complex width here because there appears to be a wandaring baseline, and the QRS complex is generally considered to start when the Q-wave descends from the isoelectric reference in the P-R interval, and ends after the S-wave returns to the isoelectric reference between the S-wave and T-wave. None of those are actually present here, so some compromises are in order.
This code is likely not robust to all such complexes becauses the 'MinProminence' value may change. It works here.
  2 Kommentare
vikash kumar
vikash kumar am 31 Mai 2020
Thank you very much
Star Strider
Star Strider am 31 Mai 2020
As always, my pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Audio I/O and Waveform Generation finden Sie in Help Center und File Exchange

Produkte


Version

R2015b

Community Treasure Hunt

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

Start Hunting!

Translated by