From 52dce0c126e67583a349e87a3f5eedee9de92dc7 Mon Sep 17 00:00:00 2001 From: Gael Guennebaud Date: Wed, 20 Jun 2012 09:28:32 +0200 Subject: significantly extend the tutorial of sparse matrices --- doc/SparseQuickReference.dox | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/SparseQuickReference.dox') 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 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 +} -- cgit v1.2.3