aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/InplaceDecomposition.dox
diff options
context:
space:
mode:
Diffstat (limited to 'doc/InplaceDecomposition.dox')
-rw-r--r--doc/InplaceDecomposition.dox2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/InplaceDecomposition.dox b/doc/InplaceDecomposition.dox
index fc89db4a1..639055b3f 100644
--- a/doc/InplaceDecomposition.dox
+++ b/doc/InplaceDecomposition.dox
@@ -3,7 +3,7 @@ namespace Eigen {
/** \eigenManualPage InplaceDecomposition Inplace matrix decompositions
Starting from %Eigen 3.3, the LU, Cholesky, and QR decompositions can operate \em inplace, that is, directly within the given input matrix.
-This feature is especially useful when dealing with huae matrices, and or when the available memory is very limited (embedded systems).
+This feature is especially useful when dealing with huge matrices, and or when the available memory is very limited (embedded systems).
To this end, the respective decomposition class must be instantiated with a Ref<> matrix type, and the decomposition object must be constructed with the input matrix as argument. As an example, let us consider an inplace LU decomposition with partial pivoting.