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

Method __truediv__

numpy/ma/core.py:4268–4275  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

4266 return divide(self, other)
4267
4268 def __truediv__(self, other):
4269 """
4270 Divide other into self, and return a new masked array.
4271
4272 """
4273 if self._delegate_binop(other):
4274 return NotImplemented
4275 return true_divide(self, other)
4276
4277 def __rtruediv__(self, other):
4278 """

Callers 1

Calls 1

_delegate_binopMethod · 0.95

Tested by 1