mne.time_frequency.
compute_epochs_psd
(epochs, picks=None, fmin=0, fmax=inf, tmin=None, tmax=None, n_fft=256, n_overlap=0, proj=False, n_jobs=1, verbose=None)¶Compute power spectral density with average periodograms.
Parameters: | epochs : instance of Epochs
picks : array-like of int | None
fmin : float
fmax : float
tmin : float | None
tmax : float | None
n_fft : int
n_overlap : int
proj : bool
n_jobs : int
verbose : bool, str, int, or None
|
---|---|
Returns: | psds : ndarray (n_epochs, n_channels, n_freqs)
freqs : ndarray (n_freqs)
|