You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ps...@apache.org on 2004/01/29 05:58:36 UTC

cvs commit: jakarta-commons/math/src/java/org/apache/commons/math/linear RealMatrix.java RealMatrixImpl.java

psteitz     2004/01/28 20:58:36

  Modified:    math/src/java/org/apache/commons/math/linear RealMatrix.java
                        RealMatrixImpl.java
  Log:
  Javadoc.
  
  Revision  Changes    Path
  1.10      +3 -3      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java
  
  Index: RealMatrix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrix.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- RealMatrix.java	29 Jan 2004 00:49:03 -0000	1.9
  +++ RealMatrix.java	29 Jan 2004 04:58:36 -0000	1.10
  @@ -266,7 +266,7 @@
        * @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 @@
        * 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;
   }
  
  
  
  1.12      +3 -3      jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java
  
  Index: RealMatrixImpl.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/math/src/java/org/apache/commons/math/linear/RealMatrixImpl.java,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- RealMatrixImpl.java	29 Jan 2004 00:49:03 -0000	1.11
  +++ RealMatrixImpl.java	29 Jan 2004 04:58:36 -0000	1.12
  @@ -556,7 +556,7 @@
   	 * 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 @@
   	 * 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()) {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org