From 36d2a54a374679d7cd06165261f4b70810141798 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Thu, 29 Jan 2004 04:58:36 +0000 Subject: [PATCH] Javadoc. git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141076 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/math/linear/RealMatrix.java | 6 +++--- src/java/org/apache/commons/math/linear/RealMatrixImpl.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/java/org/apache/commons/math/linear/RealMatrix.java b/src/java/org/apache/commons/math/linear/RealMatrix.java index 255af9bcb..16c52b451 100644 --- a/src/java/org/apache/commons/math/linear/RealMatrix.java +++ b/src/java/org/apache/commons/math/linear/RealMatrix.java @@ -56,7 +56,7 @@ package org.apache.commons.math.linear; /** * Interface defining a real-valued matrix with basic algebraic operations - * @version $Revision: 1.9 $ $Date: 2004/01/29 00:49:03 $ + * @version $Revision: 1.10 $ $Date: 2004/01/29 04:58:36 $ */ public interface RealMatrix { @@ -266,7 +266,7 @@ public interface RealMatrix { * @param b constant vector * @return vector of solution values to AX = b, where A is *this * @throws IllegalArgumentException if this.rowDimension != b.length - * @throws InvalidMatrixException if this matrix is square or singular + * @throws InvalidMatrixException if this matrix is not square or is singular */ double[] solve(double[] b) throws IllegalArgumentException, InvalidMatrixException; @@ -279,7 +279,7 @@ public interface RealMatrix { * to solve * @return matrix of solution vectors * @throws IllegalArgumentException if this.rowDimension != row dimension - * @throws InvalidMatrixException if this matrix is square or singular + * @throws InvalidMatrixException if this matrix is not square or is singular */ RealMatrix solve(RealMatrix b) throws IllegalArgumentException, InvalidMatrixException; } diff --git a/src/java/org/apache/commons/math/linear/RealMatrixImpl.java b/src/java/org/apache/commons/math/linear/RealMatrixImpl.java index 5a76a7f75..229688b48 100644 --- a/src/java/org/apache/commons/math/linear/RealMatrixImpl.java +++ b/src/java/org/apache/commons/math/linear/RealMatrixImpl.java @@ -78,7 +78,7 @@ import java.io.Serializable; * explicitly invoke LUDecompose() to recompute the decomposition * before using any of the methods above. * - * @version $Revision: 1.11 $ $Date: 2004/01/29 00:49:03 $ + * @version $Revision: 1.12 $ $Date: 2004/01/29 04:58:36 $ */ public class RealMatrixImpl implements RealMatrix, Serializable { @@ -556,7 +556,7 @@ public class RealMatrixImpl implements RealMatrix, Serializable { * to solve * @return solution array * @throws IllegalArgumentException if this.rowDimension != row dimension - * @throws InvalidMatrixException if this matrix is square or singular + * @throws InvalidMatrixException if this matrix is not square or is singular */ public double[] solve(double[] b) throws IllegalArgumentException, InvalidMatrixException { int nRows = this.getRowDimension(); @@ -581,7 +581,7 @@ public class RealMatrixImpl implements RealMatrix, Serializable { * to solve * @return matrix of solution vectors * @throws IllegalArgumentException if this.rowDimension != row dimension - * @throws InvalidMatrixException if this matrix is square or singular + * @throws InvalidMatrixException if this matrix is not square or is singular */ public RealMatrix solve(RealMatrix b) throws IllegalArgumentException, InvalidMatrixException { if (b.getRowDimension() != this.getRowDimension()) {