MCPcopy
hub / github.com/numpy/numpy / __mul__

Method __mul__

numpy/ma/core.py:4340–4344  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

4338 return subtract(other, self)
4339
4340 def __mul__(self, other):
4341 "Multiply self by other, and return a new masked array."
4342 if self._delegate_binop(other):
4343 return NotImplemented
4344 return multiply(self, other)
4345
4346 def __rmul__(self, other):
4347 """

Callers

nothing calls this directly

Calls 2

_delegate_binopMethod · 0.95
multiplyFunction · 0.50

Tested by

no test coverage detected