aboutsummaryrefslogtreecommitdiffhomepage
path: root/Eigen
diff options
context:
space:
mode:
authorGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2009-12-08 15:12:27 +0000
committerGravatar Jitse Niesen <jitse@maths.leeds.ac.uk>2009-12-08 15:12:27 +0000
commit8bfa354ee3267691a7aec6fe576847296e074c90 (patch)
treeaddb0b77e7546ca1da4984f15b3d6bf52d82f1ce /Eigen
parenta682a0eeb1246725a0f6bbbe02eeedf81d26b22b (diff)
Documentation clean up.
* remove non-existant reference to CwiseAll * define \householder_module (used in HouseholderSequence.h) * update I01_TopicLazyEvaluation.dox - Product is now called GeneralProduct * remove reference to list of examples which was deleted ages ago * rename PartialLU_solve.cpp snippet to PartialPivLU_solve.cpp
Diffstat (limited to 'Eigen')
-rw-r--r--Eigen/Householder2
-rw-r--r--Eigen/src/Core/PermutationMatrix.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/Eigen/Householder b/Eigen/Householder
index 98970ef0c..dcaeeeae8 100644
--- a/Eigen/Householder
+++ b/Eigen/Householder
@@ -8,7 +8,7 @@
namespace Eigen {
/** \defgroup Householder_Module Householder module
- * This module provides householder transformations.
+ * This module provides Householder transformations.
*
* \code
* #include <Eigen/Householder>
diff --git a/Eigen/src/Core/PermutationMatrix.h b/Eigen/src/Core/PermutationMatrix.h
index 147c48734..284baf678 100644
--- a/Eigen/src/Core/PermutationMatrix.h
+++ b/Eigen/src/Core/PermutationMatrix.h
@@ -95,7 +95,7 @@ class PermutationMatrix : public AnyMatrixBase<PermutationMatrix<SizeAtCompileTi
* array has the meaning that the permutations sends each integer i to indices[i].
*
* \warning It is your responsibility to check that the indices array that you passes actually
- * describes a permutation, \ie each value between 0 and n-1 occurs exactly once, where n is the
+ * describes a permutation, i.e., each value between 0 and n-1 occurs exactly once, where n is the
* array's size.
*/
template<typename Other>