How can I know the index of the first non-zero element in a sparse_vector in ublas and each subsequent nonzero element as well? The function begin() gives me an iterator that can be used to know the first non-zero value stored, not its index in the vector.

link|improve this question

59% accept rate
that's an answer, you should post it and accept it! – larsmans Sep 21 '11 at 18:52
feedback

2 Answers

This seems impossible to achieve without a linear scan over the vector. The API simply doesn't expose the non-zero indices. (I'd write to the authors if I were you, since they are withholding information that can be very useful when serializing sparse vectors.)

I've had similar problems with UBLAS's sparse matrices in the past, eventually forcing me to roll my own.

link|improve this answer
feedback
up vote 1 down vote accepted

Here is the answer, after Oswin Krause, from the ublas mainling list:

Iterators offer a method index() which returns the desired result. But remember that only the const_iterator is really sparse!

for(SparseVector::const_iterator pos = sparseVec.begin(); pos != sparseVec.end();++pos){ std::cout << pos.index()<< " "<< *pos; }

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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