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

Method __imul__

numpy/lib/user_array.py:84–86  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

82 __rmul__ = __mul__
83
84 def __imul__(self, other):
85 multiply(self.array, other, self.array)
86 return self
87
88 def __div__(self, other):
89 return self._rc(divide(self.array, asarray(other)))

Callers

nothing calls this directly

Calls 1

multiplyFunction · 0.90

Tested by

no test coverage detected