Method
__init__
(
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
Tested by
no test coverage detected