mne.time_frequency.
psd_array_welch
(x, sfreq, fmin=0, fmax=inf, n_fft=256, n_overlap=0, n_per_seg=None, n_jobs=1, verbose=None)[source]¶Compute power spectral density (PSD) using Welch’s method.
Parameters: | x : array, shape=(…, n_times)
sfreq : float
fmin : float
fmax : float
n_fft : int
n_overlap : int
n_per_seg : int | None
n_jobs : int
verbose : bool, str, int, or None
|
---|---|
Returns: | psds : ndarray, shape (…, n_freqs) or
freqs : ndarray, shape (n_freqs,)
|
Notes
New in version 0.14.0.