mne.time_frequency.
fit_iir_model_raw
(raw, order=2, picks=None, tmin=None, tmax=None, verbose=None)[source]¶Fit an AR model to raw data and creates the corresponding IIR filter.
The computed filter is fitted to data from all of the picked channels, with frequency response given by the standard IIR formula:
Parameters: | raw : Raw object
order : int
picks : array-like of int | None
tmin : float
tmax : float
verbose : bool, str, int, or None
|
---|---|
Returns: | b : ndarray
a : ndarray
|