You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2011/10/02 12:18:15 UTC

svn commit: r1178173 - in /commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear: CholeskyDecomposition.java SparseFieldVector.java

Author: luc
Date: Sun Oct  2 10:18:14 2011
New Revision: 1178173

URL: http://svn.apache.org/viewvc?rev=1178173&view=rev
Log:
Fixed javadoc.

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/SparseFieldVector.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=1178173&r1=1178172&r2=1178173&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 Sun Oct  2 10:18:14 2011
@@ -67,7 +67,7 @@ public class CholeskyDecomposition {
      * Calculates the Cholesky decomposition of the given matrix.
      * <p>
      * Calling this constructor is equivalent to call {@link
-     * #CholeskyDecompositionImpl(RealMatrix, double, double)} with the
+     * #CholeskyDecomposition(RealMatrix, double, double)} with the
      * thresholds set to the default values {@link
      * #DEFAULT_RELATIVE_SYMMETRY_THRESHOLD} and {@link
      * #DEFAULT_ABSOLUTE_POSITIVITY_THRESHOLD}
@@ -77,7 +77,7 @@ public class CholeskyDecomposition {
      * @throws NonSymmetricMatrixException if the matrix is not symmetric.
      * @throws NonPositiveDefiniteMatrixException if the matrix is not
      * strictly positive definite.
-     * @see #CholeskyDecompositionImpl(RealMatrix, double, double)
+     * @see #CholeskyDecomposition(RealMatrix, double, double)
      * @see #DEFAULT_RELATIVE_SYMMETRY_THRESHOLD
      * @see #DEFAULT_ABSOLUTE_POSITIVITY_THRESHOLD
      */
@@ -97,7 +97,7 @@ public class CholeskyDecomposition {
      * @throws NonSymmetricMatrixException if the matrix is not symmetric.
      * @throws NonPositiveDefiniteMatrixException if the matrix is not
      * strictly positive definite.
-     * @see #CholeskyDecompositionImpl(RealMatrix)
+     * @see #CholeskyDecomposition(RealMatrix)
      * @see #DEFAULT_RELATIVE_SYMMETRY_THRESHOLD
      * @see #DEFAULT_ABSOLUTE_POSITIVITY_THRESHOLD
      */

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SparseFieldVector.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SparseFieldVector.java?rev=1178173&r1=1178172&r2=1178173&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SparseFieldVector.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SparseFieldVector.java Sun Oct  2 10:18:14 2011
@@ -46,8 +46,7 @@ public class SparseFieldVector<T extends
      * Zero-length vectors may be used to initialize construction of vectors
      * by data gathering. We start with zero-length and use either the {@link
      * #SparseFieldVector(SparseFieldVector, int)} constructor
-     * or one of the {@code append} method ({@link #append(FieldElement)},
-     * {@link #append(FieldElement[])}, {@link #append(FieldVector)},
+     * or one of the {@code append} method ({@link #append(FieldVector)} or
      * {@link #append(SparseFieldVector)}) to gather data into this vector.
      *
      * @param field Field to which the elements belong.