add partial count redux (adapted patch from Ricard Marxer)

This commit is contained in:
Gael Guennebaud
2009-01-24 15:22:44 +00:00
parent 81b0ab53cf
commit 56c7e164f0
4 changed files with 20 additions and 2 deletions

View File

@@ -21,7 +21,6 @@ namespace Eigen {
In many applications (e.g., finite element methods) it is common to deal with very large matrices where only a few coefficients are different than zero. Both in term of memory consumption and performance, it is fundamental to use an adequate representation storing only nonzero coefficients. Such a matrix is called a sparse matrix.
\b Declaring \b sparse \b matrices \b and \b vectors \n
The SparseMatrix class is the main sparse matrix representation of the Eigen's sparse module which offers high performance, low memory usage, and compatibility with most of sparse linear algebra packages. Because of its limited flexibility, we also provide a DynamicSparseMatrix variante taillored for low-level sparse matrix assembly. Both of them can be either row major or column major: