您的位置:首页 > 健康 > 养生 > 基于稀疏辅助信号平滑的心电信号降噪方法(Matlab R2021B)

基于稀疏辅助信号平滑的心电信号降噪方法(Matlab R2021B)

2024/10/7 0:26:11 来源:https://blog.csdn.net/weixin_39402231/article/details/139283877  浏览:    关键词:基于稀疏辅助信号平滑的心电信号降噪方法(Matlab R2021B)

基于形态成分分析理论(MCA)的稀疏辅助信号分解方法是由信号的形态多样性来分解信号中添加性的混合信号成分,它最早被应用在图像处理领域,后来被引入到一维信号的处理中。

在基于MCA稀疏辅助的信号分析模型中,总变差方法TV是其中一个原型,稀疏辅助平滑方法结合并统一了传统的LTI低通滤波和总变差算法,兼具LTI低通滤波和总变差算法的优势,稀疏辅助平滑降噪的适用性更广泛,降噪的表现更好。已有研究说明,稀疏辅助平滑降噪相比低通滤波器能够有效保留瞬态冲击的幅值。

鉴于此,提出一种基于稀疏辅助信号平滑的心电信号降噪方法,运行环境为Matlab R2021B。

function [A, B, B1, D, a, b, b1, H1norm, HTH1norm] = Lowpass(deg, fc, N, K)
% [A, B, B1] = ABfilt(d, fc, N, K)
%
% Banded matrices for zero-phase high-pass recursive filter.
% The filter is H = inv(A) * B where the matrices A and B
% are created as 'sparse' matrices.
%
% INPUT
%   d  : degree of filter is 2d
%   fc : cut-off frequency (normalized frequency, 0 < fc < 0.5)
%   N  : length of signal
%   K  : order of difference matrix D (need 1 <= K <= 2*d) (default K = 1)
%
% OUTPUT
%   A, B, B1 : banded filter matrices
%       with B = B1*D where D is the K-th order difference (up to sign)
%
% Use [A, B, B1, D, a, b, b1] = ABfilt(...) to return
% filter coefficient vectors a, b, b1.if nargin < 4K = 1;
endif K > 2*degerror('ABfilt: K > 2*d')
endomc = 2*pi*fc;
t = ((1-cos(omc))/(1+cos(omc)))^deg;% Define p such that P(z)P(1/z) = B(z), i.e., P'*P = B
p = 1;
for k = 1:degp = conv(p, [-1 1]);
end
P = spdiags( p(ones(N-deg,1), :), 0:deg, N-deg, N);        % banded matrixB = P' * P;
% pp = conv(p, p(end:-1:1));q = sqrt(t);
for i = 1:degq = conv(q, [1 1]);
end
Q = spdiags( q(ones(N-deg,1), :), 0:deg, N-deg, N);    % banded matrixA = P'*P + Q'*Q;if K <= degd = 1;for i = 1:Kd = conv(d, [-1 1]);endD = spdiags(d(ones(N,1), :), 0:K, N-K, N);               % D: banded matrixp1 = deconv(p, d);P1 = spdiags( p1(ones(N-deg,1), :), 0:deg-K, N-deg, N-K);  % banded matrixB1 = P' * P1;b1 = conv(p1, p(end:-1:1));
else% deg < K <= 2*degK2 = 2*deg - K;d = 1;for i = 1:K2d = conv(d, [-1 1]);endB1 = spdiags(d(ones(N,1), :), 0:K2, N-K2, N)';               % D: banded matrixp1 = deconv(p, d);D1 = spdiags( p1(ones(N-deg,1), :), 0:deg-K2, N-deg, N-K2);  % banded matrixD = D1'*P;b1 = d;enda = conv(p, p(end:-1:1)) + conv(q, q(end:-1:1));
b = conv(p, p(end:-1:1));% verify that B = B1*D
err = B - B1*D;
mae = max(abs(err(:)));
if mae > 1e-10disp('Error in ABfilt (B1*D not equal to B)')
end% Calculate filter normsimp = zeros(size(B1,2), 1);
imp(round(N/2)) = 1;                        % imp : impulse signal (located at center to avoid transients)h1 = A \ (B1 * imp);
H1norm = sqrt( sum( abs( h1 ).^2 ) );       % norm of filter inv(A)*B1hh = B' * ((A*A') \ (B1 * imp));
%完整代码:https://mbd.pub/o/bread/mbd-ZZaZmJtxHTH1norm = sqrt( sum( abs( hh ).^2 ) );     % norm of filter B'*inv(A*A')*B1

图片

图片

图片

图片

工学博士,担任《Mechanical System and Signal Processing》《中国电机工程学报》《控制与决策》等期刊审稿专家,擅长领域:现代信号处理,机器学习,深度学习,数字孪生,时间序列分析,设备缺陷检测、设备异常检测、设备智能故障诊断与健康管理PHM等。

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com