From 94f1e9e0130119eabfdbc19fb4e2d486b9b15b8f Mon Sep 17 00:00:00 2001
From: Luc Maisonobe
Date: Tue, 30 Sep 2008 15:05:10 +0000
Subject: [PATCH] improved javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@700491 13f79535-47bb-0310-9956-ffa450edef68
---
.../apache/commons/math/linear/LUDecomposition.java | 10 ++++++++--
.../apache/commons/math/linear/QRDecomposition.java | 6 ++++--
2 files changed, 12 insertions(+), 4 deletions(-)
diff --git a/src/java/org/apache/commons/math/linear/LUDecomposition.java b/src/java/org/apache/commons/math/linear/LUDecomposition.java
index 9fe295aa9..62893ee26 100644
--- a/src/java/org/apache/commons/math/linear/LUDecomposition.java
+++ b/src/java/org/apache/commons/math/linear/LUDecomposition.java
@@ -28,8 +28,14 @@ package org.apache.commons.math.linear;
* JAMA library, with the
* following changes:
*
- * - several signatures have been added for the
solve
methods (in the superinterface),
- * - a
decompose
method has been added (in the superinterface),
+ * - several signatures have been added for the
solve
methods
+ * (in the superinterface),
+ * - a {@link DecompositionSolver#decompose(RealMatrix) decompose(RealMatrix)}
+ * method has been added (in the superinterface),
+ * - a {@link DecompositionSolver#isNonSingular() isNonSingular} method has
+ * been added (in the superinterface),
+ * - a {@link DecompositionSolver#getInverse() getInverse} method has been
+ * added (in the superinterface),
* - the
det
method has been renamed as {@link #getDeterminant() getDeterminant}.
*
*
diff --git a/src/java/org/apache/commons/math/linear/QRDecomposition.java b/src/java/org/apache/commons/math/linear/QRDecomposition.java
index f6daa18e9..fa12978e7 100644
--- a/src/java/org/apache/commons/math/linear/QRDecomposition.java
+++ b/src/java/org/apache/commons/math/linear/QRDecomposition.java
@@ -26,8 +26,10 @@ package org.apache.commons.math.linear;
*
* - several signatures have been added for the
solve
methods
* (in the superinterface),
- * - a {@link DecompositionSolver#decompose(RealMatrix) decompose} method
- * has been added (in the superinterface),
+ * - a {@link DecompositionSolver#decompose(RealMatrix) decompose(RealMatrix)}
+ * method has been added (in the superinterface),
+ * - a {@link DecompositionSolver#getInverse() getInverse} method has been
+ * added (in the superinterface),
* - the
isFullRank
method has been replaced by the {@link
* DecompositionSolver#isNonSingular() isNonSingular} method in the superinterface.
*