Return copy of source estimate instance. Returns ------- stc : instance of SourceEstimate A copy of the source estimate.
(self)
| 1163 | return self ** (0.5) |
| 1164 | |
| 1165 | def copy(self): |
| 1166 | """Return copy of source estimate instance. |
| 1167 | |
| 1168 | Returns |
| 1169 | ------- |
| 1170 | stc : instance of SourceEstimate |
| 1171 | A copy of the source estimate. |
| 1172 | """ |
| 1173 | return copy.deepcopy(self) |
| 1174 | |
| 1175 | def bin(self, width, tstart=None, tstop=None, func=np.mean): |
| 1176 | """Return a source estimate object with data summarized over time bins. |
no outgoing calls
no test coverage detected