Author: luc
Date: Mon Apr 25 13:34:59 2011
New Revision: 1096476

URL: http://svn.apache.org/viewvc?rev=1096476&view=rev
Log:
grammar

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java?rev=1096476&r1=1096475&r2=1096476&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
 Mon Apr 25 13:34:59 2011
@@ -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.
  * <p>The Cholesky decomposition of a real symmetric positive-definite
- * matrix A consists of a lower triangular matrix L with same size that
- * satisfy: A = LL<sup>T</sup>Q = I). In a sense, this is the square root of 
A.</p>
+ * matrix A consists of a lower triangular matrix L with same size such
+ * that: A = LL<sup>T</sup>Q = I). In a sense, this is the square root of 
A.</p>
  * <p>This interface is based on the class with similar name from the
  * <a href="http://math.nist.gov/javanumerics/jama/";>JAMA</a> library, with the
  * following changes:</p>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java?rev=1096476&r1=1096475&r2=1096476&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/CholeskyDecompositionImpl.java
 Mon Apr 25 13:34:59 2011
@@ -24,8 +24,8 @@ import org.apache.commons.math.util.Fast
 /**
  * Calculates the Cholesky decomposition of a matrix.
  * <p>The Cholesky decomposition of a real symmetric positive-definite
- * matrix A consists of a lower triangular matrix L with same size that
- * satisfy: A = LL<sup>T</sup>Q = I). In a sense, this is the square root of 
A.</p>
+ * matrix A consists of a lower triangular matrix L with same size such
+ * that: A = LL<sup>T</sup>Q = I). In a sense, this is the square root of 
A.</p>
  *
  * @see <a 
href="http://mathworld.wolfram.com/CholeskyDecomposition.html";>MathWorld</a>
  * @see <a 
href="http://en.wikipedia.org/wiki/Cholesky_decomposition";>Wikipedia</a>


Reply via email to