MCPcopy
hub / github.com/numpy/numpy / __rmul__

Method __rmul__

numpy/ma/core.py:4346–4353  ·  view source on GitHub ↗

Multiply other by self, and return a new masked array.

(self, other)

Source from the content-addressed store, hash-verified

4344 return multiply(self, other)
4345
4346 def __rmul__(self, other):
4347 """
4348 Multiply other by self, and return a new masked array.
4349
4350 """
4351 # In analogy with __rsub__ and __rdiv__, use original order:
4352 # we get here from `other * self`.
4353 return multiply(other, self)
4354
4355 def __truediv__(self, other):
4356 """

Callers

nothing calls this directly

Calls 1

multiplyFunction · 0.50

Tested by

no test coverage detected