| 33 | } |
| 34 | |
| 35 | void TransposeVector :: Mult (const BaseVector & x, BaseVector & y) const |
| 36 | { |
| 37 | y.FV<double>().AsMatrix(h,w) = Trans(x.FV<double>().AsMatrix(w,h)); |
| 38 | } |
| 39 | |
| 40 | void TransposeVector :: MultTrans (const BaseVector & x, BaseVector & y) const |
| 41 | { |
nothing calls this directly
no test coverage detected