Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ __pow__
Method
__pow__
numpy/matrixlib/defmatrix.py:231–232 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
229
return
self
230
231
def
__pow__(self, other):
232
return
matrix_power(self, other)
233
234
def
__ipow__(self, other):
235
self[:] = self ** other
Callers
nothing calls this directly
Calls
1
matrix_power
Function · 0.90
Tested by
no test coverage detected