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:
- * Usage notes:
- *
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.getEntry(0, 0)
- * returns the element in the first row, first column of the matrix.