aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--doc/Overview.dox1
-rw-r--r--doc/SparseQuickReference.dox11
2 files changed, 0 insertions, 12 deletions
diff --git a/doc/Overview.dox b/doc/Overview.dox
index c215a4922..113f691cb 100644
--- a/doc/Overview.dox
+++ b/doc/Overview.dox
@@ -29,7 +29,6 @@ For a first contact with Eigen, the best place is to have a look at the \ref Get
- \ref TutorialSparse
- \ref TutorialMapClass
- \ref QuickRefPage
- - \ref SparseQuickRefPage
- <b>Advanced topics</b>
- \ref TopicAliasing
- \ref TopicLazyEvaluation
diff --git a/doc/SparseQuickReference.dox b/doc/SparseQuickReference.dox
index d45ec2768..7b86e50d3 100644
--- a/doc/SparseQuickReference.dox
+++ b/doc/SparseQuickReference.dox
@@ -193,17 +193,6 @@ The following functions are useful to extract a block of rows (resp. columns) fr
sm2 = sm1.selfadjointview<Lower>(); // Build a selfadjoint matrix from the lower part of sm1.
\endcode
-\section Uncategorized Miscellaneous
-??? Internal low-level functions to insert the values in the matrix ???
-\code
- // Start a new inner column (resp. row) for a row major (resp. column major)
- sm1.startVec(k);
- // Insert the element v_ij assuming the nonzero does not already exist and that the new coefficient is the last one according to the storage order.
- sm1.insertBack(i, j) = v;
- sm1.insertBackByOuterInner(i, j) = v;
- sm1.insertBackByOuterInnerUnordered()
- sm1.finalize(); // Finalize a low level insertion of values
-\endcode
*/
} \ No newline at end of file