Hi Umut,
I'm using the copy-constructor to change the order of the matrix, but I run into a memory problem, because I use very large matrices with around 10^6 - 10^9 (in some cases 10^12) non-zero elements, so with the copy constructor I duplicate the matrix data. I need only an iterator or something else for a column-major access without duplicating
Phil
_______________________________________________
ublas mailing list
ublas@lists.boost.org
http://lists.boost.org/mailman/listinfo.cgi/ublas
Sent to: u.tabak@tudelft.nl
So you initialize the matrix A_csc which is column-major with a row-major matrix B_csr, is that the case? So the copy ctor is called, if this is the case, I tested this and this takes too much time on a matrix on the order of 100K. I am confused a bit... Can you confirm this?