mne_bids.write_meg_calibration¶
- mne_bids.write_meg_calibration(calibration, bids_path, verbose=None)[source]¶
 Write the Elekta/Neuromag/MEGIN fine-calibration matrix to disk.
- Parameters
 - calibrationpath-like | 
dict Either the path of the
.datfile containing the file-calibration matrix, or the dictionary returned bymne.preprocessing.read_fine_calibration().- bids_path
mne_bids.BIDSPath A
mne_bids.BIDSPathinstance with at leastrootandsubjectset, and thatdatatypeis either'meg'orNone.- verbosebool | 
None If a boolean, whether or not to produce verbose output. If
None, use the default log level.
- calibrationpath-like | 
 
Examples
>>> data_path = mne.datasets.testing.data_path(download=False) >>> calibration_fname = op.join(data_path, 'SSS', 'sss_cal_3053.dat') >>> bids_path = BIDSPath(subject='01', session='test', ... root=op.join(data_path, 'mne_bids')) >>> write_meg_calibration(calibration_fname, bids_path) Writing fine-calibration file to ...sub-01_ses-test_acq-calibration_meg.dat...