├── GaussianNoise ├── BestSensitivityFinder.m ├── Function_GMA.m ├── Function_Gaussian.m ├── GetMetrics.m ├── MA_Improved_Model.m ├── NoiseSeedZero.mat ├── Noise_Seed_0.mat ├── Noise_Seed_Gaussian.mat ├── Noise_Seed_m02.mat ├── Noise_Seed_m053.mat ├── Noise_Seed_m1.mat ├── Noise_Seed_m125.mat ├── Noise_Seed_m17.mat ├── VectorEsp.mat ├── VectorEspWithoutFilter.mat ├── VectorSen.mat └── VectorSenWithOutFilter.mat ├── GeneralNoise ├── Function_1_LP.m ├── Function_2_MA.m ├── Main_Total_Noise.m └── findErrors.m ├── NoiseProofs ├── DenoiseECG.m ├── Detrending.m ├── GetAveragedNoise.m ├── GetConfussionValues.m ├── GetCorrimiento.m ├── GetECGPeakPoints.m ├── GetPeakPoints.m ├── GetSavitzkyNoise.m ├── NoiseProof1Parametrizado.m └── ValoresMedia.m ├── README.md ├── Readme.pdf ├── SpectrumAnalysis ├── GetSpectrum.m ├── PowSpecs.m └── SpectrumAnalysis.m ├── centerfreq.m ├── db ├── DATA_01_TYPE02.mat ├── DATA_01_TYPE02_BPMtrace.mat ├── DATA_02_TYPE02.mat ├── DATA_02_TYPE02_BPMtrace.mat ├── DATA_03_TYPE02.mat ├── DATA_03_TYPE02_BPMtrace.mat ├── DATA_04_TYPE02.mat ├── DATA_04_TYPE02_BPMtrace.mat ├── DATA_05_TYPE02.mat ├── DATA_05_TYPE02_BPMtrace.mat ├── DATA_06_TYPE02.mat ├── DATA_06_TYPE02_BPMtrace.mat ├── DATA_07_TYPE02.mat ├── DATA_07_TYPE02_BPMtrace.mat ├── DATA_08_TYPE02.mat ├── DATA_08_TYPE02_BPMtrace.mat ├── DATA_09_TYPE02.mat ├── DATA_09_TYPE02_BPMtrace.mat ├── DATA_10_TYPE02.mat ├── DATA_10_TYPE02_BPMtrace.mat ├── DATA_11_TYPE02.mat ├── DATA_11_TYPE02_BPMtrace.mat ├── DATA_12_TYPE02.mat └── DATA_12_TYPE02_BPMtrace.mat └── preproc.m /GaussianNoise/BestSensitivityFinder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/BestSensitivityFinder.m -------------------------------------------------------------------------------- /GaussianNoise/Function_GMA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Function_GMA.m -------------------------------------------------------------------------------- /GaussianNoise/Function_Gaussian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Function_Gaussian.m -------------------------------------------------------------------------------- /GaussianNoise/GetMetrics.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/GetMetrics.m -------------------------------------------------------------------------------- /GaussianNoise/MA_Improved_Model.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/MA_Improved_Model.m -------------------------------------------------------------------------------- /GaussianNoise/NoiseSeedZero.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/NoiseSeedZero.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_0.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_0.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_Gaussian.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_Gaussian.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_m02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_m02.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_m053.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_m053.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_m1.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_m1.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_m125.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_m125.mat -------------------------------------------------------------------------------- /GaussianNoise/Noise_Seed_m17.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/Noise_Seed_m17.mat -------------------------------------------------------------------------------- /GaussianNoise/VectorEsp.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/VectorEsp.mat -------------------------------------------------------------------------------- /GaussianNoise/VectorEspWithoutFilter.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/VectorEspWithoutFilter.mat -------------------------------------------------------------------------------- /GaussianNoise/VectorSen.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/VectorSen.mat -------------------------------------------------------------------------------- /GaussianNoise/VectorSenWithOutFilter.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GaussianNoise/VectorSenWithOutFilter.mat -------------------------------------------------------------------------------- /GeneralNoise/Function_1_LP.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GeneralNoise/Function_1_LP.m -------------------------------------------------------------------------------- /GeneralNoise/Function_2_MA.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GeneralNoise/Function_2_MA.m -------------------------------------------------------------------------------- /GeneralNoise/Main_Total_Noise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GeneralNoise/Main_Total_Noise.m -------------------------------------------------------------------------------- /GeneralNoise/findErrors.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/GeneralNoise/findErrors.m -------------------------------------------------------------------------------- /NoiseProofs/DenoiseECG.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/DenoiseECG.m -------------------------------------------------------------------------------- /NoiseProofs/Detrending.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/Detrending.m -------------------------------------------------------------------------------- /NoiseProofs/GetAveragedNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetAveragedNoise.m -------------------------------------------------------------------------------- /NoiseProofs/GetConfussionValues.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetConfussionValues.m -------------------------------------------------------------------------------- /NoiseProofs/GetCorrimiento.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetCorrimiento.m -------------------------------------------------------------------------------- /NoiseProofs/GetECGPeakPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetECGPeakPoints.m -------------------------------------------------------------------------------- /NoiseProofs/GetPeakPoints.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetPeakPoints.m -------------------------------------------------------------------------------- /NoiseProofs/GetSavitzkyNoise.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/GetSavitzkyNoise.m -------------------------------------------------------------------------------- /NoiseProofs/NoiseProof1Parametrizado.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/NoiseProof1Parametrizado.m -------------------------------------------------------------------------------- /NoiseProofs/ValoresMedia.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/NoiseProofs/ValoresMedia.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/README.md -------------------------------------------------------------------------------- /Readme.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/Readme.pdf -------------------------------------------------------------------------------- /SpectrumAnalysis/GetSpectrum.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/SpectrumAnalysis/GetSpectrum.m -------------------------------------------------------------------------------- /SpectrumAnalysis/PowSpecs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/SpectrumAnalysis/PowSpecs.m -------------------------------------------------------------------------------- /SpectrumAnalysis/SpectrumAnalysis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/SpectrumAnalysis/SpectrumAnalysis.m -------------------------------------------------------------------------------- /centerfreq.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/centerfreq.m -------------------------------------------------------------------------------- /db/DATA_01_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_01_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_01_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_01_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_02_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_02_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_02_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_02_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_03_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_03_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_03_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_03_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_04_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_04_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_04_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_04_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_05_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_05_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_05_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_05_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_06_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_06_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_06_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_06_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_07_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_07_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_07_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_07_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_08_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_08_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_08_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_08_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_09_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_09_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_09_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_09_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_10_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_10_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_10_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_10_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_11_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_11_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_11_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_11_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /db/DATA_12_TYPE02.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_12_TYPE02.mat -------------------------------------------------------------------------------- /db/DATA_12_TYPE02_BPMtrace.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/db/DATA_12_TYPE02_BPMtrace.mat -------------------------------------------------------------------------------- /preproc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebasmos/PPGpeakDetection/HEAD/preproc.m --------------------------------------------------------------------------------