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

Method copy

mne/source_estimate.py:1165–1173  ·  view source on GitHub ↗

Return copy of source estimate instance. Returns ------- stc : instance of SourceEstimate A copy of the source estimate.

(self)

Source from the content-addressed store, hash-verified

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.

Callers 13

__add__Method · 0.95
__sub__Method · 0.95
__div__Method · 0.95
__mul__Method · 0.95
__pow__Method · 0.95
__neg__Method · 0.95
__abs__Method · 0.95
binMethod · 0.95
transformMethod · 0.95
read_source_estimateFunction · 0.45
expandMethod · 0.45
estimate_snrMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected