├── MainScript.m ├── Preprocessing ├── .gitkeep ├── HPFilt_PPG.m ├── crop.m ├── data_denoising.m ├── derivative.m ├── nanremoval.m └── qrsIntervals.m ├── README.md ├── dataset ├── .gitkeep ├── p000770-2127-02-13-18-22m_data.mat ├── p014857-2159-02-07-13-29m_data.mat ├── p016129-2177-10-25-21-42m_data.mat ├── s03386-2577-07-30-13-04m_data.mat ├── s30047-2525-03-09-16-48m_data.mat └── s30297-2903-04-30-12-46m_data.mat ├── feature-extraction ├── .gitkeep ├── BP_FeatureExtractor.m ├── FeatureExtraction.m ├── PAT_extract.m ├── PPG_processing.m ├── derivatives_PPG_processing.m └── featureExtraction2.m ├── model ├── .gitkeep └── stepwiseFittedModel.m ├── pca ├── .gitkeep ├── DimensionalityAnalysis.m └── PlotBiplot.m └── pdsb-mini-paper_revised.pdf /MainScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/MainScript.m -------------------------------------------------------------------------------- /Preprocessing/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Preprocessing/HPFilt_PPG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/HPFilt_PPG.m -------------------------------------------------------------------------------- /Preprocessing/crop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/crop.m -------------------------------------------------------------------------------- /Preprocessing/data_denoising.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/data_denoising.m -------------------------------------------------------------------------------- /Preprocessing/derivative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/derivative.m -------------------------------------------------------------------------------- /Preprocessing/nanremoval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/nanremoval.m -------------------------------------------------------------------------------- /Preprocessing/qrsIntervals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/Preprocessing/qrsIntervals.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/README.md -------------------------------------------------------------------------------- /dataset/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /dataset/p000770-2127-02-13-18-22m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/p000770-2127-02-13-18-22m_data.mat -------------------------------------------------------------------------------- /dataset/p014857-2159-02-07-13-29m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/p014857-2159-02-07-13-29m_data.mat -------------------------------------------------------------------------------- /dataset/p016129-2177-10-25-21-42m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/p016129-2177-10-25-21-42m_data.mat -------------------------------------------------------------------------------- /dataset/s03386-2577-07-30-13-04m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/s03386-2577-07-30-13-04m_data.mat -------------------------------------------------------------------------------- /dataset/s30047-2525-03-09-16-48m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/s30047-2525-03-09-16-48m_data.mat -------------------------------------------------------------------------------- /dataset/s30297-2903-04-30-12-46m_data.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/dataset/s30297-2903-04-30-12-46m_data.mat -------------------------------------------------------------------------------- /feature-extraction/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /feature-extraction/BP_FeatureExtractor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/BP_FeatureExtractor.m -------------------------------------------------------------------------------- /feature-extraction/FeatureExtraction.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/FeatureExtraction.m -------------------------------------------------------------------------------- /feature-extraction/PAT_extract.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/PAT_extract.m -------------------------------------------------------------------------------- /feature-extraction/PPG_processing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/PPG_processing.m -------------------------------------------------------------------------------- /feature-extraction/derivatives_PPG_processing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/derivatives_PPG_processing.m -------------------------------------------------------------------------------- /feature-extraction/featureExtraction2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/feature-extraction/featureExtraction2.m -------------------------------------------------------------------------------- /model/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /model/stepwiseFittedModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/model/stepwiseFittedModel.m -------------------------------------------------------------------------------- /pca/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /pca/DimensionalityAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/pca/DimensionalityAnalysis.m -------------------------------------------------------------------------------- /pca/PlotBiplot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/pca/PlotBiplot.m -------------------------------------------------------------------------------- /pdsb-mini-paper_revised.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pedr0sorio/cuffless-BP-estimation/HEAD/pdsb-mini-paper_revised.pdf --------------------------------------------------------------------------------