How to correctly apply bandpass filter to EEG data?

53 次查看(过去 30 天)
I have 25-electrodes EEG data, I used bandpass(myData, [0.5 40], 250) to apply a simple bandpass filtering on the data I have. I do not know why some time delay is exist after the application of the filter.

回答(1 个)

Star Strider
Star Strider 2020-6-29
编辑:Star Strider 2023-10-29
The bandpass function (and its friends) in my experience have all used filtfilt to do the actual filtering, so there should not be any delay or phase distortion.
You can check it with:
[myFilteredData, bpdf] = bandpass(myData, [0.5 40], 250);
then:
myFilteredData2 = filtfilt(bpdf, myData);
and see if there is a difference when you plot them.
EDIT — (29 Oct 2023 at 21:58)
The bandpass function (and its friends) will always return an efficient elliptic filter if the 'ImpulseResponse','iir' name-value pair is added to the argument list:
[myFilteredData, bpdf] = bandpass(myData, [0.5 40], 250, 'ImpulseResponse','iir');
.

类别

Help CenterFile Exchange 中查找有关 EEG/MEG/ECoG 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by