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
The list of projection vectors.
- overwrite
bool
If True (default False), overwrite the destination file if it exists.
New in version 1.0.
- verbose
bool
|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 version 1.0.
See also