Add source estimates.
(self, a)
| 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_() |