You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2011/04/28 11:41:42 UTC

svn commit: r1097384 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RectangularCholeskyDecomposition.java

Author: erans
Date: Thu Apr 28 09:41:42 2011
New Revision: 1097384

URL: http://svn.apache.org/viewvc?rev=1097384&view=rev
Log:
Unused (except in Javadoc) "import".

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

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RectangularCholeskyDecomposition.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RectangularCholeskyDecomposition.java?rev=1097384&r1=1097383&r2=1097384&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RectangularCholeskyDecomposition.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RectangularCholeskyDecomposition.java Thu Apr 28 09:41:42 2011
@@ -17,8 +17,6 @@
 
 package org.apache.commons.math.linear;
 
-import org.apache.commons.math.random.CorrelatedRandomVectorGenerator;
-
 
 /**
  * An interface to classes that implement an algorithm to calculate a
@@ -32,10 +30,10 @@ import org.apache.commons.math.random.Co
  * is that rows/columns may be permuted (hence the rectangular shape instead
  * of the traditional triangular shape) and there is a threshold to ignore
  * small diagonal elements. This is used for example to generate {@link
- * CorrelatedRandomVectorGenerator correlated random n-dimensions vectors}
- * in a p-dimension subspace (p < n). In other words, it allows generating
- * random vectors from a covariance matrix that is only positive semidefinite,
- * and not positive definite.</p>
+ * org.apache.commons.math.random.CorrelatedRandomVectorGenerator correlated
+ * random n-dimensions vectors} in a p-dimension subspace (p < n).
+ * In other words, it allows generating random vectors from a covariance
+ * matrix that is only positive semidefinite, and not positive definite.</p>
  * <p>Rectangular Cholesky decomposition is <em>not</em> suited for solving
  * linear systems, so it does not provide any {@link DecompositionSolver
  * decomposition solver}.</p>