I am a newbie in C++ Boost uBLAS library so I have a noob question - how to transpose a matrix using this library? I could not find question here:

http://www.boost.org/doc/libs/1_44_0/libs/numeric/ublas/doc/html/index.html

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted
C = boost::numeric::ublas::trans(A);

Documented (poorly) under Overview of Matrix and Vector Operations.

link|improve this answer
2  
There is a little more info here live.boost.org/doc/libs/1_44_0/libs/numeric/ublas/doc/… (Section 4.2) – Steve Townsend Nov 4 '10 at 13:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.