From 2434e63187475e416ee0e2e8fd5cc51ec5e5bc19 Mon Sep 17 00:00:00 2001
From: Gilles Sadowski
Date: Thu, 8 Sep 2011 15:36:54 +0000
Subject: [PATCH] Deleted obsolete Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166751 13f79535-47bb-0310-9956-ffa450edef68
---
.../math/linear/Array2DRowRealMatrix.java | 26 ++-----------------
1 file changed, 2 insertions(+), 24 deletions(-)
diff --git a/src/main/java/org/apache/commons/math/linear/Array2DRowRealMatrix.java b/src/main/java/org/apache/commons/math/linear/Array2DRowRealMatrix.java
index 8db8dc716..981d2c72b 100644
--- a/src/main/java/org/apache/commons/math/linear/Array2DRowRealMatrix.java
+++ b/src/main/java/org/apache/commons/math/linear/Array2DRowRealMatrix.java
@@ -27,30 +27,8 @@ import org.apache.commons.math.exception.util.LocalizedFormats;
import org.apache.commons.math.util.MathUtils;
/**
- * Implementation of RealMatrix using a double[][] array to store entries and
- *
- * LU decomposition to support linear system
- * solution and inverse.
- *
- * The LU decomposition is performed as needed, to support the following operations:
- * - solve
- * - isSingular
- * - getDeterminant
- * - inverse
- *
- * Usage notes:
- *
-
- * The LU decomposition is cached and reused on subsequent calls.
- * If data are modified via references to the underlying array obtained using
- *
getDataRef()
, then the stored LU decomposition will not be
- * discarded. In this case, you need to explicitly invoke
- * LUDecompose()
to recompute the decomposition
- * before using any of the methods above.
- * -
- * As specified in the {@link RealMatrix} interface, matrix element indexing
- * is 0-based -- e.g.,
getEntry(0, 0)
- * returns the element in the first row, first column of the matrix.
- *
+ * Implementation of {@link RealMatrix} using a {@code double[][]} array to
+ * store entries.
*
* @version $Id$
*/