(self, x, adjoint=False, adjoint_arg=False)
| 570 | |
| 571 | @abc.abstractmethod |
| 572 | def _matmul(self, x, adjoint=False, adjoint_arg=False): |
| 573 | raise NotImplementedError("_matmul is not implemented.") |
| 574 | |
| 575 | def matmul(self, x, adjoint=False, adjoint_arg=False, name="matmul"): |
| 576 | """Transform [batch] matrix `x` with left multiplication: `x --> Ax`. |