diff --git a/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java b/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java index 432d81a44..513e7ce92 100644 --- a/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java +++ b/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java @@ -22,8 +22,8 @@ package org.apache.commons.math.linear; * An interface to classes that implement an algorithm to calculate the * Cholesky decomposition of a real symmetric positive-definite matrix. *
The Cholesky decomposition of a real symmetric positive-definite - * matrix A consists of a lower triangular matrix L with same size that - * satisfy: A = LLTQ = I). In a sense, this is the square root of A.
+ * matrix A consists of a lower triangular matrix L with same size such + * that: A = LLTQ = I). In a sense, this is the square root of A. *This interface is based on the class with similar name from the * JAMA library, with the * following changes:
diff --git a/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java b/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java index 57dd18a2f..c280ff198 100644 --- a/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java +++ b/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java @@ -24,8 +24,8 @@ import org.apache.commons.math.util.FastMath; /** * Calculates the Cholesky decomposition of a matrix. *The Cholesky decomposition of a real symmetric positive-definite - * matrix A consists of a lower triangular matrix L with same size that - * satisfy: A = LLTQ = I). In a sense, this is the square root of A.
+ * matrix A consists of a lower triangular matrix L with same size such + * that: A = LLTQ = I). In a sense, this is the square root of A. * * @see MathWorld * @see Wikipedia