mne.beamformer.dics_epochs(epochs, forward, noise_csd, data_csd, reg=0.05, label=None, pick_ori=None, return_generator=False, real_filter=False, verbose=None)[source]¶Dynamic Imaging of Coherent Sources (DICS).
Compute a Dynamic Imaging of Coherent Sources (DICS) beamformer on single trial data and return estimates of source time courses.
Note
Fixed orientation forward operators with real_filter=False
will result in complex time courses, in which case absolute
values will be returned.
Warning
This implementation has not been heavily tested so please report any issues or suggestions.
| Parameters: | epochs : Epochs
forward : dict
noise_csd : instance of CrossSpectralDensity
data_csd : instance of CrossSpectralDensity
reg : float
label : Label | None
pick_ori : None | ‘normal’
return_generator : bool
real_filter : bool
verbose : bool, str, int, or None
|
|---|---|
| Returns: | stc: list | generator of SourceEstimate | VolSourceEstimate
|
See also