Thanks Oswin, <br>I think this should be included in the documentation, (See <a href="http://stackoverflow.com/q/7501996/894755">here</a>). Beginners like me can't find this easily.<br>I didn't understand your note about const_iterator. <br> <br>Regards,<br>Tarek<br><br>On Wed, Sep 21, 2011 at 6:47 PM, Oswin Krause <<a href="mailto:Oswin.Krause@ruhr-uni-bochum.de">Oswin.Krause@ruhr-uni-bochum.de</a>> wrote:<br>>> Hello,<br>>> How can I know the index of the first non-zero element in a<br> >> sparse_vector in ublas and each subsequent nonzero element as well?<br>>> The function begin() gives me an iterator that can be used to know the<br>>> first non-zero value stored, not its index in the vector.<br> >> Tarek<br>> Iterators offer a method index() which returns the desired result. But<br>> remember that only the const_iterator is really sparse!<br>><br>> for(SparseVector::const_iterator pos = sparseVec.begin(); pos !=<br> > sparseVec.end();++pos){<br>> std::cout << pos.index()<< " "<< *pos;<br>> }<br>><br>> Greetings,<br>> Oswin<br>><br>> _______________________________________________<br> > ublas mailing list<br>> <a href="mailto:ublas@lists.boost.org">ublas@lists.boost.org</a><br>> <a href="http://lists.boost.org/mailman/listinfo.cgi/ublas">http://lists.boost.org/mailman/listinfo.cgi/ublas</a><br> > Sent to: <a href="mailto:t.elsayed@thphys.uni-heidelberg.de">t.elsayed@thphys.uni-heidelberg.de</a><br>><br><br>