MCPcopy
hub / github.com/pandas-dev/pandas / __rmatmul__

Method __rmatmul__

pandas/core/series.py:3052–3056  ·  view source on GitHub ↗

Matrix multiplication using binary `@` operator.

(self, other)

Source from the content-addressed store, hash-verified

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]

Callers

nothing calls this directly

Calls 2

dotMethod · 0.95
transposeMethod · 0.45

Tested by

no test coverage detected