Fix doc regressions caused by marging back the 1.1 branch.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@359311 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Joerg Pietschmann 2005-12-27 22:50:49 +00:00
parent 1cad2e0d6b
commit 372cc5eb5c
1 changed files with 2 additions and 3 deletions

View File

@ -56,10 +56,9 @@ RealMatrix m = new RealMatrixImpl(matrixData);
// 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);