Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/numpy/numpy
/ __rdiv__
Method
__rdiv__
numpy/lib/user_array.py:91–92 ·
view source on GitHub ↗
(self, other)
Source
from the content-addressed store, hash-verified
89
return
self._rc(divide(self.array, asarray(other)))
90
91
def
__rdiv__(self, other):
92
return
self._rc(divide(asarray(other), self.array))
93
94
def
__idiv__(self, other):
95
divide(self.array, other, self.array)
Callers
nothing calls this directly
Calls
3
_rc
Method · 0.95
asarray
Function · 0.90
divide
Function · 0.85
Tested by
no test coverage detected