Matrix multiplication using binary `@` operator.
(self, other)
| 3050 | return self.dot(other) |
| 3051 | |
| 3052 | def __rmatmul__(self, other): |
| 3053 | """ |
| 3054 | Matrix multiplication using binary `@` operator. |
| 3055 | """ |
| 3056 | return self.dot(np.transpose(other)) |
| 3057 | |
| 3058 | # Signature of "searchsorted" incompatible with supertype "IndexOpsMixin" |
| 3059 | def searchsorted( # type: ignore[override] |