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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to