You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/12/24 00:23:31 UTC

svn commit: r729171 - /commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java

Author: luc
Date: Tue Dec 23 15:23:31 2008
New Revision: 729171

URL: http://svn.apache.org/viewvc?rev=729171&view=rev
Log:
fixed javadoc

Modified:
    commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java?rev=729171&r1=729170&r2=729171&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/linear/RealMatrix.java Tue Dec 23 15:23:31 2008
@@ -239,7 +239,7 @@
 
    /**
     * Sets the entries in row number <code>row</code>
-    * as a row matrix.  Row indices start at 0.
+    * as a vector.  Row indices start at 0.
     *
     * @param row the row to be set
     * @param vector row vector (must have the same number of columns
@@ -253,7 +253,7 @@
    
    /**
     * Returns the entries in column number <code>column</code>
-    * as a column vector.  Column indices start at 0.
+    * as a vector.  Column indices start at 0.
     *
     * @param column the column to be fetched
     * @return column vector
@@ -263,7 +263,7 @@
 
    /**
     * Sets the entries in column number <code>column</code>
-    * as a column matrix.  Column indices start at 0.
+    * as a vector.  Column indices start at 0.
     *
     * @param column the column to be set
     * @param vector column vector (must have the same number of rows as the instance)