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.
feedback
|
|
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. | |||
|
feedback
|
|
Here is the answer, after Oswin Krause, from the ublas mainling list:
| |||
|
feedback
|