I need to do a translation in place of a large matrix (so the easiest way to select another matrix and transpose it will not work). Unfortunately, this large matrix is ββnot square. And even worse, the matrix is ββstored in an array of doubles with the number of columns and rows stored separately.
I found that boost has a uBLAS library, but I did not find a way to wrap my doubling array in a uBLAS matrix. Is there any way to do this?
Or do you recommend other ways to do this work?
source share