Tagged Questions

4
votes
6answers
1k views

Sparse constrained linear least-squares solver

This great SO answer points to a good sparse solver for Ax=b, but I've got constraints on x such that each element in x is >=0 an <=N. Also, A is huge (around 2e6x2e6) but very sparse with ...
3
votes
3answers
1k views

Overloading operator [] for a sparse vector

I'm trying to create a "sparse" vector class in C++, like so: template<typename V, V Default> class SparseVector { ... } Internally, it will be represented by an std::map<int, V> ...
2
votes
2answers
118 views

sparse matrix overdetermined linear equation system c/c++ library

I need a library to solve Ax=b systems, where A is a non-symmetric sparse matrix, with 8 entry per row (and it might be quite big). I think a library that implements biconjugate gradient should be ...
2
votes
2answers
60 views

Accessing the indices of non-zero elements in a UBLAS sparse vector

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 ...
0
votes
1answer
43 views

API that handles boost ublas sparse OR dense matrices

I am a bit perplexed by the Boost ublas documentation. It does not seem clear to me that the sparse and dense matrix classes share a common parent class---which I believe is by design. But then how ...