mne_bids.write_meg_crosstalk¶
-
mne_bids.
write_meg_crosstalk
(fname, bids_path, verbose=None)[source]¶ Write the Elekta/Neuromag/MEGIN crosstalk information to disk.
- Parameters
- fnamepath-like
The path of the
FIFF
file containing the crosstalk information.- bids_path
mne_bids.BIDSPath
A
mne_bids.BIDSPath
instance with at leastroot
andsubject
set, and thatdatatype
is either'meg'
orNone
.- verbosebool |
None
If a boolean, whether or not to produce verbose output. If
None
, use the default log level.
Examples
>>> crosstalk_fname = 'ct_sparse.fif' >>> bids_path = BIDSPath(subject='01', session='test', root='/data') >>> write_megcrosstalk(crosstalk_fname, bids_path)