aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/SparseQuickReference.dox
diff options
context:
space:
mode:
authorGravatar Gael Guennebaud <g.gael@free.fr>2012-06-20 09:28:32 +0200
committerGravatar Gael Guennebaud <g.gael@free.fr>2012-06-20 09:28:32 +0200
commit52dce0c126e67583a349e87a3f5eedee9de92dc7 (patch)
tree6f27c66cecfec258f22d096835424d6fa324f9fa /doc/SparseQuickReference.dox
parent882912b85f7ea310fd76689d7e55b8f88e6d3cab (diff)
significantly extend the tutorial of sparse matrices
Diffstat (limited to 'doc/SparseQuickReference.dox')
-rw-r--r--doc/SparseQuickReference.dox4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/SparseQuickReference.dox b/doc/SparseQuickReference.dox
index 7b86e50d3..7d6eb0fa9 100644
--- a/doc/SparseQuickReference.dox
+++ b/doc/SparseQuickReference.dox
@@ -18,7 +18,7 @@ In this page, we give a quick summary of the main operations available for spars
i.e either row major or column major. The default is column major. Most arithmetic operations on sparse matrices will assert that they have the same storage order. Moreover, when interacting with external libraries that are not yet supported by Eigen, it is important to know how to send the required matrix pointers.
\section Constructors Constructors and assignments
-SparseMatrix is the core class to build and manipulate sparse matrices in Eigen. It takes as template parameters the Scalar type and the storage order, either RowMajor or ColumnMajor. The default is ColumnMajor. ??? It is possible to modify the default storage order at compile-time with the cmake variable \b EIGEN_DEFAULT_ROW_MAJOR ???
+SparseMatrix is the core class to build and manipulate sparse matrices in Eigen. It takes as template parameters the Scalar type and the storage order, either RowMajor or ColumnMajor. The default is ColumnMajor.
\code
SparseMatrix<double> sm1(1000,1000); // 1000x1000 compressed sparse matrix of double.
@@ -195,4 +195,4 @@ The following functions are useful to extract a block of rows (resp. columns) fr
*/
-} \ No newline at end of file
+}