Apply forward transform along specified axis.
(self, gdata, cdata, axis)
| 55 | """Abstract base class for separable matrix-multiplication transforms.""" |
| 56 | |
| 57 | def forward(self, gdata, cdata, axis): |
| 58 | """Apply forward transform along specified axis.""" |
| 59 | apply_dense(self.forward_matrix, gdata, axis=axis, out=cdata) |
| 60 | |
| 61 | def backward(self, cdata, gdata, axis): |
| 62 | """Apply backward transform along specified axis.""" |
nothing calls this directly
no test coverage detected