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_pathmne_bids.BIDSPath

A mne_bids.BIDSPath instance with at least root and subject set, and that datatype is either 'meg' or None.

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)

Examples using mne_bids.write_meg_crosstalk