pyriemann.utils.covariance.cospectrum¶
- pyriemann.utils.covariance.cospectrum(X, window=128, overlap=0.75, fmin=None, fmax=None, fs=None)¶
Compute co-spectral matrices, the real part of cross-spectra.
- Parameters
- Xndarray, shape (n_channels, n_times)
Multi-channel time-series.
- windowint, default=128
The length of the FFT window used for spectral estimation.
- overlapfloat, default=0.75
The percentage of overlap between window.
- fminfloat | None, default=None
The minimal frequency to be returned.
- fmaxfloat | None, default=None
The maximal frequency to be returned.
- fsfloat | None, default=None
The sampling frequency of the signal.
- Returns
- Sndarray, shape (n_channels, n_channels, n_freqs)
Co-spectral matrices, for each frequency bin.
- freqsndarray, shape (n_freqs,)
The frequencies associated to cospectra.