标签: c++ boost matrix transpose ublas
我是C ++ Boost uBLAS库的新手,所以我有一个noob问题 - 如何使用这个库转置矩阵?我在这里找不到问题:
http://www.boost.org/doc/libs/1_44_0/libs/numeric/ublas/doc/html/index.html
答案 0 :(得分:17)
C = boost::numeric::ublas::trans(A);
在Overview of Matrix and Vector Operations下记录(不良)。