Skip to content

Minor: nafEpochRejection - Bandpass filter description fixed

Theodoros Karapanagiotidis requested to merge tk710/naf:master into master

A bandpass filter is applied in nafEpochRejection, line 120

self.dfc.append_filter(BandPassFilter(low_freq=arg['lowFreq'],high_freq=arg['highFreq']))

From naf.meg.filters, lines 178-179

We implement the band-pass filter using a low-pass filter at self.high_freq and a high-pass filter a self.low_freq

Merge request reports