Tagged Questions

1
vote
2answers
1k views

Looping over the non-zero elements of a uBlas sparse matrix

I have the following sparse matrix that contains O(N) elements boost::numeric::ublas::compressed_matrix<int> adjacency (N, N); I could write a brute force double loop to go over all the ...