mne_features.univariate
.compute_spect_edge_freq¶Spectal Edge Frequency (per channel).
Sampling rate of the data.
If not None, reference frequency for the computation of the spectral edge frequency. If None, ref_freq = sfreq / 2 is used.
If not None, edge
is expected to be a list of values between 0
and 1. If None, edge = [0.5]
is used.
Method used for the estimation of the Power Spectral Density (PSD).
Valid methods are: 'welch'
, 'multitaper'
or 'fft'
.
If not None, dict with optional parameters (welch_n_fft,
welch_n_per_seg, welch_n_overlap) to be passed to
mne_features.utils.power_spectrum()
. If None, default parameters
are used (see doc for mne_features.utils.power_spectrum()
).
With: n_edge = 1 if edge is None or n_edge = len(edge) otherwise.
Notes
Alias of the feature function: spect_edge_freq. See [1].
References
Mormann, F. et al. (2006). Seizure prediction: the long and winding road. Brain, 130(2), 314-333.