Expand description
Butterworth IIR filter with zero-phase filtfilt.
Implements scipy.signal.butter + scipy.signal.filtfilt for anti-alias
filtering before downsampling, as used by PyBIDS.
Functionsยง
- butter_
bandpass - Butterworth band-pass filter coefficients.
- butter_
highpass - Butterworth high-pass filter coefficients.
- butter_
lowpass - Butterworth low-pass filter coefficients.
- filtfilt
- Zero-phase filtering: apply filter forward, then backward.
- lfilter
- Direct-form II transposed IIR filter (single-pass).
- notch_
filter - Notch (band-stop) filter using second-order IIR sections.
- resample
- Resample a signal from
fs_oldtofs_newusing linear interpolation.