matrix product
| 212 | |
| 213 | /// matrix product |
| 214 | Matrix prod(const Matrix& lop, const Matrix& rop) { |
| 215 | return boost::numeric::ublas::prod(lop, rop); |
| 216 | } |
| 217 | |
| 218 | /// vector product |
| 219 | Vector prod(const Matrix& m, const Vector& v) { |
no outgoing calls