r""" Returns elements chosen from x or y depending on condition. This function follows the api from :any:`numpy.where` See: https://numpy.org/doc/stable/reference/generated/numpy.where.html
(self, condition, x, y)
| 840 | raise NotImplementedError() |
| 841 | |
| 842 | def where(self, condition, x, y): |
| 843 | r""" |
| 844 | Returns elements chosen from x or y depending on condition. |
| 845 | |
| 846 | This function follows the api from :any:`numpy.where` |
| 847 | |
| 848 | See: https://numpy.org/doc/stable/reference/generated/numpy.where.html |
| 849 | """ |
| 850 | raise NotImplementedError() |
| 851 | |
| 852 | def copy(self, a): |
| 853 | r""" |
no outgoing calls