cardio-rs 0.2.1

A Rust library for computing heart rate variability (HRV) metrics from ECG and PPG data.
Documentation
1
2
3
4
5
6
//! Provides utility functions for data processing, I/O operations, Welch's periodogram,
//! the analysis pipeline, and test data management.
pub mod io_utils;
pub mod processing_utils;
pub mod test_data;
pub mod welch;