poincare plot of heart sound
Show older comments
I have following data: Sample frequency=11025; numbers of bits=16; y(file size)=<47326x1 double>.
I need to make RRI[i](sec) vs RRI[i+1](sec) poincare plot, where RRI is R-R interval. How do it?
Answers (2)
Dishant Arora
on 10 Feb 2014
X = RRI;
X(end)=[];
Y=RRI;
Y(1)=[];
plot(Y,X,'.');
Saifuddin Chowdhury
on 10 Feb 2014
Edited: Saifuddin Chowdhury
on 11 Feb 2014
1 Comment
Dishant Arora
on 11 Feb 2014
time between two successive RR samples will be simply 1/Fs.
Categories
Find more on Audio I/O and Waveform Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!