| 522 | |
| 523 | |
| 524 | void MatOp::transpose(const MatExpr& expr, MatExpr& res) const |
| 525 | { |
| 526 | Mat m; |
| 527 | expr.op->assign(expr, m); |
| 528 | MatOp_T::makeExpr(res, m, 1); |
| 529 | } |
| 530 | |
| 531 | |
| 532 | void MatOp::matmul(const MatExpr& e1, const MatExpr& e2, MatExpr& res) const |