mne.time_frequency.csd_array_fourier#
- mne.time_frequency.csd_array_fourier(X, sfreq, t0=0, fmin=0, fmax=inf, tmin=None, tmax=None, ch_names=None, n_fft=None, projs=None, n_jobs=None, *, verbose=None)[source]#
Estimate cross-spectral density from an array using short-time fourier.
- Parameters:
- Xarray_like, shape (n_epochs, n_channels, n_times)
The time series data consisting of n_epochs separate observations of signals with n_channels time-series of length n_times.
- sfreq
float Sampling frequency of observations.
- t0
float Time of the first sample relative to the onset of the epoch, in seconds. Defaults to 0.
- fmin
float Minimum frequency of interest, in Hertz.
- fmax
float|numpy.inf Maximum frequency of interest, in Hertz.
- tmin
float|None Minimum time instant to consider, in seconds. If
Nonestart at first sample.- tmax
float|None Maximum time instant to consider, in seconds. If
Noneend at last sample.- ch_names
listofstr|None A name for each time series. If
None(the default), the series will be named ‘SERIES###’.- n_fft
int|None Length of the FFT. If
None, the exact number of samples betweentminandtmaxwill be used.- projs
listofProjection|None List of projectors to store in the CSD object. Defaults to
None, which means no projectors are stored.- n_jobs
int|None The number of jobs to run in parallel. If
-1, it is set to the number of CPU cores. Requires thejoblibpackage.None(default) is a marker for ‘unset’ that will be interpreted asn_jobs=1(sequential execution) unless the call is performed under ajoblib.parallel_configcontext manager that sets another value forn_jobs.- verbosebool |
str|int|None Control verbosity of the logging output. If
None, use the default verbosity level. See the logging documentation andmne.verbose()for details. Should only be passed as a keyword argument.
- Returns:
- csdinstance of
CrossSpectralDensity The computed cross-spectral density.
- csdinstance of