MCPcopy
hub / github.com/mne-tools/mne-python / _read_forward_hdf5

Function _read_forward_hdf5

mne/forward/forward.py:908–913  ·  view source on GitHub ↗
(fname)

Source from the content-addressed store, hash-verified

906
907
908def _read_forward_hdf5(fname):
909 read_hdf5, _ = _import_h5io_funcs()
910 fwd = Forward(read_hdf5(fname)["fwd"])
911 fwd["info"] = Info(fwd["info"])
912 fwd["src"] = SourceSpaces(fwd["src"])
913 return fwd
914
915
916def _write_forward_solution(fid, fwd):

Callers 1

read_forward_solutionFunction · 0.85

Calls 4

_import_h5io_funcsFunction · 0.85
ForwardClass · 0.85
InfoClass · 0.85
SourceSpacesClass · 0.85

Tested by

no test coverage detected