filter ECG and PPG signal with low pass filter

조회 수: 9 (최근 30일)
Dominik Smolinsky
Dominik Smolinsky 2021년 4월 29일
댓글: Mathieu NOE 2021년 4월 29일
Hello guys.
I have ECG signal with 125 sampling frequency and i have to filter it with low pass filter. Which are the best "settings of filter?"
[b, a] = fir1(%i need 2 arguments here
, 'low');
y = filtfilt(b, a, ECG);
[peaks, poloha] = findpeaks(y, 'MinPeakDistance', 320);
ECG_sprac = length(poloha);
[b, a] = fir1(%i need 2 arguments here
,'low');
y = filtfilt(b, a, PPG);
[peaks, poloha] = findpeaks(y, 'MinPeakDistance', 320);
PPG_sprac = length(poloha);
breathVAL = (ECG_sprac + PPG_sprac)/2;
  댓글 수: 1
Mathieu NOE
Mathieu NOE 2021년 4월 29일
hi
maybe you should first explain why the need for low pass filterning (noise ?) and also sharing the data would help
tx

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Smoothing and Denoising에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by