Return (self > other) element-wise. See Also -------- greater
(self, other)
| 644 | return less_equal(self, other) |
| 645 | |
| 646 | def __gt__(self, other): |
| 647 | """ |
| 648 | Return (self > other) element-wise. |
| 649 | |
| 650 | See Also |
| 651 | -------- |
| 652 | greater |
| 653 | """ |
| 654 | return greater(self, other) |
| 655 | |
| 656 | def __lt__(self, other): |
| 657 | """ |