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

Method __init__

mne/source_estimate.py:2883–2898  ·  view source on GitHub ↗
(
        self, data, vertices=None, tmin=None, tstep=None, subject=None, verbose=None
    )

Source from the content-addressed store, hash-verified

2881
2882 @verbose
2883 def __init__(
2884 self, data, vertices=None, tmin=None, tstep=None, subject=None, verbose=None
2885 ):
2886 if not isinstance(vertices, list) or len(vertices) < 2:
2887 raise ValueError(
2888 "Vertices must be a list of numpy arrays with "
2889 "one array per source space."
2890 )
2891 super().__init__(
2892 data,
2893 vertices=vertices,
2894 tmin=tmin,
2895 tstep=tstep,
2896 subject=subject,
2897 verbose=verbose,
2898 )
2899
2900 @property
2901 def _n_surf_vert(self):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected