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

Method __add__

mne/source_space/_source_space.py:478–482  ·  view source on GitHub ↗

Combine source spaces.

(self, other)

Source from the content-addressed store, hash-verified

476 return self[0].get("subject_his_id", None) if len(self) else None
477
478 def __add__(self, other):
479 """Combine source spaces."""
480 out = self.copy()
481 out += other
482 return SourceSpaces(out)
483
484 def copy(self):
485 """Make a copy of the source spaces.

Callers

nothing calls this directly

Calls 2

copyMethod · 0.95
SourceSpacesClass · 0.85

Tested by

no test coverage detected