r""" Matrix product of two arrays. See: https://numpy.org/doc/stable/reference/generated/numpy.matmul.html#numpy.matmul
(self, a, b)
| 1080 | raise NotImplementedError() |
| 1081 | |
| 1082 | def matmul(self, a, b): |
| 1083 | r""" |
| 1084 | Matrix product of two arrays. |
| 1085 | |
| 1086 | See: https://numpy.org/doc/stable/reference/generated/numpy.matmul.html#numpy.matmul |
| 1087 | """ |
| 1088 | raise NotImplementedError() |
| 1089 | |
| 1090 | def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None): |
| 1091 | r""" |
no outgoing calls