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

Method __matmul__

pandas/core/series.py:3046–3050  ·  view source on GitHub ↗

Matrix multiplication using binary `@` operator.

(self, other)

Source from the content-addressed store, hash-verified

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 """

Callers

nothing calls this directly

Calls 1

dotMethod · 0.95

Tested by

no test coverage detected