(self, value, shape: tuple[int, ...])
| 79 | # A matrix with all entries equal to the given scalar value. |
| 80 | @abc.abstractmethod |
| 81 | def scalar_matrix(self, value, shape: tuple[int, ...]): |
| 82 | raise NotImplementedError() |
| 83 | |
| 84 | # Return the value at the given index in the matrix. |
| 85 | def index(self, matrix, key): |
no outgoing calls
no test coverage detected