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

Method __div__

numpy/ma/core.py:4259–4266  ·  view source on GitHub ↗

Divide other into self, and return a new masked array.

(self, other)

Source from the content-addressed store, hash-verified

4257 return multiply(other, self)
4258
4259 def __div__(self, other):
4260 """
4261 Divide other into self, and return a new masked array.
4262
4263 """
4264 if self._delegate_binop(other):
4265 return NotImplemented
4266 return divide(self, other)
4267
4268 def __truediv__(self, other):
4269 """

Callers

nothing calls this directly

Calls 2

_delegate_binopMethod · 0.95
divideFunction · 0.85

Tested by

no test coverage detected