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 2009/08/01 21:01:59 UTC

svn commit: r799906 - in /commons/proper/math/trunk: RELEASE-NOTES.txt src/main/java/org/apache/commons/math/linear/RealMatrix.java src/site/xdoc/changes.xml

Author: luc
Date: Sat Aug  1 19:01:59 2009
New Revision: 799906

URL: http://svn.apache.org/viewvc?rev=799906&view=rev
Log:
fixed an error in RealMatrix javadoc
JIRA: MATH-281

Modified:
    commons/proper/math/trunk/RELEASE-NOTES.txt
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealMatrix.java
    commons/proper/math/trunk/src/site/xdoc/changes.xml

Modified: commons/proper/math/trunk/RELEASE-NOTES.txt
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/RELEASE-NOTES.txt?rev=799906&r1=799905&r2=799906&view=diff
==============================================================================
--- commons/proper/math/trunk/RELEASE-NOTES.txt (original)
+++ commons/proper/math/trunk/RELEASE-NOTES.txt Sat Aug  1 19:01:59 2009
@@ -367,6 +367,8 @@
   when a tentative bracketing interval has a root exactly at one of
   its end points. Previously, such intervals triggered an exception.
 
+o MATH-281: Fixed an error in RealMatrix javadoc
+
 Changes:
 
 o Changed the return type of the various interpolation algorithms to

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealMatrix.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealMatrix.java?rev=799906&r1=799905&r2=799906&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealMatrix.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealMatrix.java Sat Aug  1 19:01:59 2009
@@ -60,7 +60,7 @@
      * Compute this minus m.
      *
      * @param m    matrix to be subtracted
-     * @return     this + m
+     * @return     this - m
      * @throws  IllegalArgumentException if m is not the same size as this
      */
     RealMatrix subtract(RealMatrix m) throws IllegalArgumentException;

Modified: commons/proper/math/trunk/src/site/xdoc/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/site/xdoc/changes.xml?rev=799906&r1=799905&r2=799906&view=diff
==============================================================================
--- commons/proper/math/trunk/src/site/xdoc/changes.xml (original)
+++ commons/proper/math/trunk/src/site/xdoc/changes.xml Sat Aug  1 19:01:59 2009
@@ -65,6 +65,9 @@
 Most of the compilation errors users will encounter after the switch
 will be due to classes moved due to package reorganization.  These errors
 are simply solved by adjusting the import statements in users code.">
+      <action dev="luc" type="fix" issue="MATH-281" due-to="Albert Huang">
+        Fixed an error in RealMatrix javadoc
+      </action>
       <action dev="luc" type="add" >
         Added an implementation of the Mersenne twister pseudo random number generator
         from Makoto Matsumoto and Takuji Nishimura