MCPcopy
hub / github.com/numpy/numpy / __truediv__

Method __truediv__

numpy/ma/core.py:4355–4362  ·  view source on GitHub ↗

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

(self, other)

Source from the content-addressed store, hash-verified

4353 return multiply(other, self)
4354
4355 def __truediv__(self, other):
4356 """
4357 Divide other into self, and return a new masked array.
4358
4359 """
4360 if self._delegate_binop(other):
4361 return NotImplemented
4362 return true_divide(self, other)
4363
4364 def __rtruediv__(self, other):
4365 """

Callers 1

Calls 1

_delegate_binopMethod · 0.95

Tested by 1