mne.write_proj#
- mne.write_proj(fname, projs, *, overwrite=False, verbose=None)[source]#
Write projections to a FIF file.
- Parameters:
- fnamepath-like
The name of file containing the projections vectors. It should end with
-proj.fif
or-proj.fif.gz
.- projs
list
ofProjection
The list of projection vectors.
- overwritebool
If True (default False), overwrite the destination file if it exists.
New in v1.0.
- verbosebool |
str
|int
|None
Control verbosity of the logging output. If
None
, use the default verbosity level. See the logging documentation andmne.verbose()
for details. Should only be passed as a keyword argument.New in v1.0.
See also