You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by pi...@apache.org on 2005/12/27 23:50:52 UTC

svn commit: r359311 - /jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml

Author: pietsch
Date: Tue Dec 27 14:50:49 2005
New Revision: 359311

URL: http://svn.apache.org/viewcvs?rev=359311&view=rev
Log:
Fix doc regressions caused by marging back the 1.1 branch.

Modified:
    jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml

Modified: jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml
URL: http://svn.apache.org/viewcvs/jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml?rev=359311&r1=359310&r2=359311&view=diff
==============================================================================
--- jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml (original)
+++ jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml Tue Dec 27 14:50:49 2005
@@ -56,10 +56,9 @@
 
 // One more with three rows, two columns
 double[][] matrixData2 = { {1d,2d}, {2d,5d}, {1d, 7d}};
-RealMatrix n = new RealMatixImpl(matrixData2);
+RealMatrix n = new RealMatrixImpl(matrixData2);
 
-// Note: constructor makes a
-// Fresh copy of the input double[][] array
+// Note: The constructor copies  the input double[][] array.
 
 // Now multiply m by n
 RealMatrix p = m.multiply(n);



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