% 参考:Simple Approach for Tremor Suppression in Electrocardiograms 2010
% 问题:基线附近用9点平均可以,QRS区域用的滤波不固定,所以出现跳变。
clc; close all; clear all;
load ECG_sample_noisy.mat
fs=ECGinfo.Fs_ECG2;% sample rate
t = [0:length(ECG2)-1]/fs;
x=ECG2/200;
%x = sin(2*pi*5*t)';
init_length=20;
global threshold03 threshold05 threshold07 threshold09 SAMPLE_COUNT
global Y3 Y5 Y7 Y9
threshold03=2.4; % mV
threshold05=0.6; % mV
threshold07=0.4; % mV
threshold09=0.2; % mV
SAMPLE_COUNT=0;
Y3=zeros(1,6);Y5=zeros(1,8);Y7=zeros(1,10);Y9=zeros(1,12);
y3=zeros(size(x));
y5=zeros(size(x));
y7=zeros(size(x));
y9=zeros(size(x));
y_filt=zeros(length(x),4);
y=zeros(size(x));
基线去抖动 代码, 参考:Simple Approach for Tremor Suppression in Electrocardiograms 2010
最新推荐文章于 2024-11-07 18:59:45 发布
这篇博客探讨了在电生理信号,如心电图(ECG)中,使用简单方法进行基线漂移去除的技术。内容可能包括对2010年一篇关于电生理信号去抖动论文的引用和实现代码的展示,通过这种方法改善信号质量,提高后续分析的准确性。
摘要由CSDN通过智能技术生成