Take the square root. Returns ------- stc : instance of SourceEstimate A copy of the SourceEstimate with sqrt(data).
(self)
| 1153 | return stc |
| 1154 | |
| 1155 | def sqrt(self): |
| 1156 | """Take the square root. |
| 1157 | |
| 1158 | Returns |
| 1159 | ------- |
| 1160 | stc : instance of SourceEstimate |
| 1161 | A copy of the SourceEstimate with sqrt(data). |
| 1162 | """ |
| 1163 | return self ** (0.5) |
| 1164 | |
| 1165 | def copy(self): |
| 1166 | """Return copy of source estimate instance. |
no outgoing calls