r""" Tests element-wise for finiteness (not infinity and not Not a Number). This function follows the api from :any:`numpy.isfinite`. See: https://numpy.org/doc/stable/reference/generated/numpy.isfinite.html
(self, a)
| 998 | raise NotImplementedError() |
| 999 | |
| 1000 | def isfinite(self, a): |
| 1001 | r""" |
| 1002 | Tests element-wise for finiteness (not infinity and not Not a Number). |
| 1003 | |
| 1004 | This function follows the api from :any:`numpy.isfinite`. |
| 1005 | |
| 1006 | See: https://numpy.org/doc/stable/reference/generated/numpy.isfinite.html |
| 1007 | """ |
| 1008 | raise NotImplementedError() |
| 1009 | |
| 1010 | def array_equal(self, a, b): |
| 1011 | r""" |
no outgoing calls