Author: psteitz
Date: Mon Oct 19 10:27:47 2009
New Revision: 826627

URL: http://svn.apache.org/viewvc?rev=826627&view=rev
Log:
Javadoc only.  Dropped 'now defunct' from JAMA attribution.

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/EigenDecomposition.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.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=826627&r1=826626&r2=826627&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 Oct 19 10:27:47 2009
@@ -21,7 +21,7 @@
 /**
  * An interface to classes that implement an algorithm to calculate the
  * Cholesky decomposition of a real symmetric positive-definite matrix.
- * <p>This interface is based on the class with similar name from the now 
defunct
+ * <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>
  * <ul>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java?rev=826627&r1=826626&r2=826627&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
 Mon Oct 19 10:27:47 2009
@@ -25,7 +25,7 @@
  * V and D such that A = V &times; D &times; V<sup>T</sup>.
  * A, V and D are all m &times; m matrices.</p>
  * <p>This interface is similar in spirit to the 
<code>EigenvalueDecomposition</code>
- * class from the now defunct <a 
href="http://math.nist.gov/javanumerics/jama/";>JAMA</a>
+ * class from the <a href="http://math.nist.gov/javanumerics/jama/";>JAMA</a>
  * library, with the following changes:</p>
  * <ul>
  *   <li>a {...@link #getVT() getVt} method has been added,</li>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java?rev=826627&r1=826626&r2=826627&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
 Mon Oct 19 10:27:47 2009
@@ -26,7 +26,7 @@
  * such that P&times;A = L&times;U. P is a rows permutation matrix that is used
  * to rearrange the rows of A before so that it can be decomposed. L is a lower
  * triangular matrix with unit diagonal terms and U is an upper triangular 
matrix.</p>
- * <p>This interface is based on the class with similar name from the now 
defunct
+ * <p>This interface is based on the class with similar name from the
  * <a href="http://math.nist.gov/javanumerics/jama/";>JAMA</a> library.</p>
  * <ul>
  *   <li>a {...@link #getP() getP} method has been added,</li>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/LUDecomposition.java?rev=826627&r1=826626&r2=826627&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
 Mon Oct 19 10:27:47 2009
@@ -25,7 +25,7 @@
  * such that P&times;A = L&times;U. P is a rows permutation matrix that is used
  * to rearrange the rows of A before so that it can be decomposed. L is a lower
  * triangular matrix with unit diagonal terms and U is an upper triangular 
matrix.</p>
- * <p>This interface is based on the class with similar name from the now 
defunct
+ * <p>This interface is based on the class with similar name from the
  * <a href="http://math.nist.gov/javanumerics/jama/";>JAMA</a> library.</p>
  * <ul>
  *   <li>a {...@link #getP() getP} method has been added,</li>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/QRDecomposition.java?rev=826627&r1=826626&r2=826627&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
 Mon Oct 19 10:27:47 2009
@@ -21,7 +21,7 @@
 /**
  * An interface to classes that implement an algorithm to calculate the
  * QR-decomposition of a real matrix.
- * <p>This interface is based on the class with similar name from the now 
defunct
+ * <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>
  * <ul>

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java?rev=826627&r1=826626&r2=826627&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
 Mon Oct 19 10:27:47 2009
@@ -27,7 +27,7 @@
  * Let A be an m &times; n matrix, then U is an m &times; m orthogonal matrix,
  * &Sigma; is a m &times; n diagonal matrix with positive diagonal elements,
  * and V is an n &times; n orthogonal matrix.</p>
- * <p>This interface is similar to the class with similar name from the now 
defunct
+ * <p>This interface is similar to the class with similar name from the
  * <a href="http://math.nist.gov/javanumerics/jama/";>JAMA</a> library, with the
  * following changes:</p>
  * <ul>


Reply via email to