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/11/02 07:28:02 UTC

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

Author: pietsch
Date: Tue Nov  1 22:27:53 2005
New Revision: 330198

URL: http://svn.apache.org/viewcvs?rev=330198&view=rev
Log:
Fix typo (http://marc.theaimsgroup.com/?l=jakarta-commons-user&m=113088082306294&w=2)

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=330198&r1=330197&r2=330198&view=diff
==============================================================================
--- jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml (original)
+++ jakarta/commons/proper/math/trunk/xdocs/userguide/linear.xml Tue Nov  1 22:27:53 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