(self, x, copy=True, nan=0.0, posinf=None, neginf=None)
| 1477 | return np.matmul(a, b) |
| 1478 | |
| 1479 | def nan_to_num(self, x, copy=True, nan=0.0, posinf=None, neginf=None): |
| 1480 | return np.nan_to_num(x, copy=copy, nan=nan, posinf=posinf, neginf=neginf) |
| 1481 | |
| 1482 | def det(self, a): |
| 1483 | return np.linalg.det(a) |
nothing calls this directly
no test coverage detected