How to calculate heart rate from RR interval matrix?
2 次查看(过去 30 天)
显示 更早的评论
Hi, I have RR intervals matrix and I want to calculate the heart rate bpm?
0 个评论
采纳的回答
Star Strider
2018-11-9
Convert the R-R intervals into individual rates, then calculate the mean.
Example —
RR_Vct = rand(15,1); % R-R Intervals In Seconds
HR_Mean = mean(1./RR_Vct); % Mean Heart Rate
0 个评论
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!