Matrix multiplication using binary `@` operator.
(self, other)
| 3044 | return maybe_unbox_numpy_scalar(result) |
| 3045 | |
| 3046 | def __matmul__(self, other): |
| 3047 | """ |
| 3048 | Matrix multiplication using binary `@` operator. |
| 3049 | """ |
| 3050 | return self.dot(other) |
| 3051 | |
| 3052 | def __rmatmul__(self, other): |
| 3053 | """ |