I was wondering what was the best way to remove a row from uBlas's compressed matrix? I was wondering if there was some way to get a hold of the compressed column data inside the vector? I am looking at this page http://netlib.org/linalg/html_templates/node92.html and can't find how to access those elements.

My matrix is declared as follows:

  ublas::compressed_matrix
     <
     double,
     ublas::column_major,
     0,
     ublas::unbounded_array<int>,
     ublas::unbounded_array<double> >

My eventual goal is to use this method to remove all zero rows.

EDIT: I suspect the solution will involve changing the ublas::compressed_matrix structure internally. I think its safe to assume that the number of non-zero entries will be on the order of 1k. I hope to call the method to remove a row, maybe, 20 times.

link|improve this question

is a proxy an acceptable alternative? removing row is non-trival. – J-16 SDiZ Jul 7 '11 at 4:15
I'm not quite sure what you mean by a proxy. – Misha Jul 7 '11 at 4:22
and ublas don't use std::vector for storage – J-16 SDiZ Jul 7 '11 at 4:22
Matrix Proxies boost.org/doc/libs/1_46_1/libs/numeric/ublas/doc/… , to be specific, the "Matrix Slice" object – J-16 SDiZ Jul 7 '11 at 4:24
I wouldn't have any problems using matrix proxies, but I don't quite see how it can help me remove a row in the middle of the matrix. – Misha Jul 7 '11 at 4:30
show 2 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.