MCPcopy Index your code
hub / github.com/mne-tools/mne-python / __add__

Method __add__

mne/source_estimate.py:1010–1014  ·  view source on GitHub ↗

Add source estimates.

(self, a)

Source from the content-addressed store, hash-verified

1008 self._times.flags.writeable = False
1009
1010 def __add__(self, a):
1011 """Add source estimates."""
1012 stc = self.copy()
1013 stc += a
1014 return stc
1015
1016 def __iadd__(self, a): # noqa: D105
1017 self._remove_kernel_sens_data_()

Callers

nothing calls this directly

Calls 1

copyMethod · 0.95

Tested by

no test coverage detected