From c30aac9ad6221fe7e6a031cfc82f68359ccf1c54 Mon Sep 17 00:00:00 2001
From: Phil Steitz
Date: Mon, 19 Oct 2009 10:27:47 +0000
Subject: [PATCH] Javadoc only. Dropped 'now defunct' from JAMA attribution.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@826627 13f79535-47bb-0310-9956-ffa450edef68
---
.../org/apache/commons/math/linear/CholeskyDecomposition.java | 2 +-
.../java/org/apache/commons/math/linear/EigenDecomposition.java | 2 +-
.../org/apache/commons/math/linear/FieldLUDecomposition.java | 2 +-
.../java/org/apache/commons/math/linear/LUDecomposition.java | 2 +-
.../java/org/apache/commons/math/linear/QRDecomposition.java | 2 +-
.../apache/commons/math/linear/SingularValueDecomposition.java | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
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 1cf56ed26..daf40615e 100644
--- a/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java
@@ -21,7 +21,7 @@ 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.
- * This interface is based on the class with similar name from the now defunct
+ *
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/EigenDecomposition.java b/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
index af423b725..67aaee470 100644
--- a/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/EigenDecomposition.java
@@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
* V and D such that A = V × D × VT.
* A, V and D are all m × m matrices.
* This interface is similar in spirit to the EigenvalueDecomposition
- * class from the now defunct JAMA
+ * class from the JAMA
* library, with the following changes:
*
* - a {@link #getVT() getVt} method has been added,
diff --git a/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java b/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
index 232fa6d4f..10ccb1ff4 100644
--- a/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/FieldLUDecomposition.java
@@ -26,7 +26,7 @@ import org.apache.commons.math.FieldElement;
* such that P×A = L×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.
- * This interface is based on the class with similar name from the now defunct
+ *
This interface is based on the class with similar name from the
* JAMA library.
*
* - a {@link #getP() getP} method has been added,
diff --git a/src/main/java/org/apache/commons/math/linear/LUDecomposition.java b/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
index b09802069..1c43d76c7 100644
--- a/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/LUDecomposition.java
@@ -25,7 +25,7 @@ package org.apache.commons.math.linear;
* such that P×A = L×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.
- * This interface is based on the class with similar name from the now defunct
+ *
This interface is based on the class with similar name from the
* JAMA library.
*
* - a {@link #getP() getP} method has been added,
diff --git a/src/main/java/org/apache/commons/math/linear/QRDecomposition.java b/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
index cdf8a9610..1ef045dc9 100644
--- a/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/QRDecomposition.java
@@ -21,7 +21,7 @@ package org.apache.commons.math.linear;
/**
* An interface to classes that implement an algorithm to calculate the
* QR-decomposition of a real matrix.
- * This interface is based on the class with similar name from the now defunct
+ *
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/SingularValueDecomposition.java b/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
index ae976b488..38bac6c71 100644
--- a/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
+++ b/src/main/java/org/apache/commons/math/linear/SingularValueDecomposition.java
@@ -27,7 +27,7 @@ package org.apache.commons.math.linear;
* Let A be an m × n matrix, then U is an m × m orthogonal matrix,
* Σ is a m × n diagonal matrix with positive diagonal elements,
* and V is an n × n orthogonal matrix.
- * This interface is similar to the class with similar name from the now defunct
+ *
This interface is similar to the class with similar name from the
* JAMA library, with the
* following changes:
*