Divide other into self, and return a new masked array.
(self, other)
| 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 | """ |