mne.filter.
high_pass_filter
(x, Fs, Fp, filter_length='10s', trans_bandwidth=0.5, method='fft', iir_params=None, picks=None, n_jobs=1, copy=True, verbose=None)¶Highpass filter for the signal x.
Applies a zero-phase highpass filter to the signal x, operating on the last dimension.
Parameters: | x : array
Fs : float
Fp : float
filter_length : str (Default: ‘10s’) | int | None
trans_bandwidth : float
method : str
iir_params : dict | None
picks : array-like of int | None
n_jobs : int | str
copy : bool
verbose : bool, str, int, or None
|
---|---|
Returns: | xf : array
|
See also
Notes
The frequency response is (approximately) given by:
-----------------------
/|
/ |
/ |
/ |
---------- |
|
Fstop Fp
Where Fstop = Fp - trans_bandwidth.