mne.write_bem_solution#
- mne.write_bem_solution(fname, bem, overwrite=False, *, verbose=None)[source]#
Write a BEM model with solution.
- Parameters:
- fname
str
The filename to use. Can end with
.h5
to write using HDF5.- beminstance of
ConductorModel
The BEM model with solution to save.
- overwrite
bool
If True (default False), overwrite the destination file if it exists.
- 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.
- fname
See also