mne.time_frequency.tfr_array_multitaper(epoch_data, sfreq, frequencies, n_cycles=7.0, zero_mean=True, time_bandwidth=None, use_fft=True, decim=1, output=’complex’, n_jobs=1, verbose=None)[source]¶Compute time-frequency transforms using wavelets and multitaper windows.
Uses Morlet wavelets windowed with multiple DPSS tapers.
| Parameters: | epoch_data : array of shape (n_epochs, n_channels, n_times) 
 sfreq : float | int 
 frequencies : array-like of floats, shape (n_freqs) 
 n_cycles : float | array of float 
 zero_mean : bool 
 time_bandwidth : float 
 use_fft : bool 
 decim : int | slice 
 output : str, defaults to ‘complex’ 
 n_jobs : int 
 verbose : bool, str, int, or None, defaults to None 
  | 
|---|---|
| Returns: | out : array 
  | 
See also
mne.time_frequency.tfr_multitaper, mne.time_frequency.tfr_morlet, mne.time_frequency.tfr_array_morlet, mne.time_frequency.tfr_stockwell, mne.time_frequency.tfr_array_stockwell
Notes
New in version 0.14.0.