Add other to self, and return a new masked array.
(self, other)
| 4313 | return add(self, other) |
| 4314 | |
| 4315 | def __radd__(self, other): |
| 4316 | """ |
| 4317 | Add other to self, and return a new masked array. |
| 4318 | |
| 4319 | """ |
| 4320 | # In analogy with __rsub__ and __rdiv__, use original order: |
| 4321 | # we get here from `other + self`. |
| 4322 | return add(other, self) |
| 4323 | |
| 4324 | def __sub__(self, other): |
| 4325 | """ |