필터 지우기
필터 지우기

Poincare plot for hrv

조회 수: 26 (최근 30일)
Olga
Olga 2011년 12월 29일
Hello, I'm writing an application to analize HRV and I have a problem with the Poincare plot. I've done the SD1 and SD2 parameters but I don't know how to vizualize the plot. Can anybody help me in this matter? I'll be very grateful ;)
that is what I've done:
%Poincare plot
xp=odstepRR;
xp(end)=[];
xm=odstepRR;
xm(1)=[];
%SD1
SD1 = std(xp-xm)/sqrt(2);
set(handles.sd1, 'string', num2str(SD1*1000));
%SD2
SD2 = std(xp+xm)/sqrt(2);
set(handles.sd2, 'string', num2str(SD2*1000));
%SDRR
SDRR=sqrt(SD1^2+SD2^2)/sqrt(2);
set(handles.sdrr, 'string', num2str(SDRR*1000));
  댓글 수: 1
David
David 2012년 6월 13일
can you plz explain how you arrived at the sd1 and sd2 equations?

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

채택된 답변

bym
bym 2011년 12월 29일
I don't know what the variable odstepRR is, but a reasonable assumption would lead to this as the Poincare plot
plot(xm,xp,'.')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Frequency-Domain Analysis에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by