MCPcopy Create free account
hub / github.com/numpy/numpy / __rmul__

Method __rmul__

numpy/matrixlib/defmatrix.py:224–225  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

222 return NotImplemented
223
224 def __rmul__(self, other):
225 return N.dot(other, self)
226
227 def __imul__(self, other):
228 self[:] = self * other

Callers

nothing calls this directly

Calls 1

dotMethod · 0.80

Tested by

no test coverage detected