Effacer les filtres
Effacer les filtres

EEG preprocessing using bandpass filter

14 vues (au cours des 30 derniers jours)
Maanvi Bhatnagar
Maanvi Bhatnagar le 1 Nov 2017
Modifié(e) : Star Strider le 12 Déc 2022
I have EEG data obtained from BCI Competition III dataset IIIA. I want to band pass this data in 8-13 HZ. Currently, the data is in the frequency range of 0-50HZ.How do I apply Butterworth filter on this data? What should be the ideal filter order?can somebody provide the code?

Réponses (1)

Ashish Tiwari
Ashish Tiwari le 28 Déc 2019
First of all let me know the sampling frequency you are working on. if your sampling frequency is 128HZ then normalise your lower cut off frequency and upper cut off frequency like this:
Fs=128;
for signals between 8-13Hz:--
[8 13]/Fs/2
then put this in butter function
[b,a]=butter(10,[8 13]/Fs/2);%where 10 is the order of the filter.The resulting bandpass and bandstop designs are of order 2n.i.e. 20th order
  2 commentaires
vo
vo le 12 Déc 2022
@Ashish Tiwari Why the bandpass [flo fhi]/128/2 ? I don't know why? why must divide 128/2? Can you explain for me? thank you
Star Strider
Star Strider le 12 Déc 2022
Modifié(e) : Star Strider le 12 Déc 2022
@vo — It is necessary to divide the frequencies in Hz by the Nyquist frequency (the highest uniquely identifiable frequency in a sampled signal, one-half the sampling frequency) in order to normalise the signal on the interval radians/independent variable unit (seconds, centimetres, etc.), although actually to the interval as arguments to the MATLAB filter design functions.

Connectez-vous pour commenter.

Catégories

En savoir plus sur EEG/MEG/ECoG dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by