(self, condition, x=None, y=None)
| 2751 | return a |
| 2752 | |
| 2753 | def where(self, condition, x=None, y=None): |
| 2754 | if x is None and y is None: |
| 2755 | return cp.where(condition) |
| 2756 | else: |
| 2757 | return cp.where(condition, x, y) |
| 2758 | |
| 2759 | def copy(self, a): |
| 2760 | return a.copy() |