Subtract self from other, and return a new masked array.
(self, other)
| 4235 | return subtract(self, other) |
| 4236 | |
| 4237 | def __rsub__(self, other): |
| 4238 | """ |
| 4239 | Subtract self from other, and return a new masked array. |
| 4240 | |
| 4241 | """ |
| 4242 | return subtract(other, self) |
| 4243 | |
| 4244 | def __mul__(self, other): |
| 4245 | "Multiply self by other, and return a new masked array." |
nothing calls this directly
no test coverage detected