Marking peaks in an ECG signal
问题 I am working on ECG signal processing. I am using the MIT-BIH Arrhythmia database found here. After loading the signal, I marked the R peaks correctly. Then I was trying to extract QRS complex, but I couldn't. I want to make marks on peaks like in this image: . . . . . . . Here is my code: clear all; clc; close all; load ('G:\1.Thesis\data set\100\100m') %% Remove base & gain %%figure (1) val = (val - 1024)/200; ECGsignal = val(1,1:3600); SAMPLES2READ = 3600; time = (0:length(ECGsignal)-1)