(self, a, b)
| 1474 | return np.transpose(a, axes) |
| 1475 | |
| 1476 | def matmul(self, a, b): |
| 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) |