Replaced reference to deleted class.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1432656 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2013-01-13 16:53:12 +00:00
parent a70f833db4
commit 5f0e374d4f
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ RealMatrix pInverse = new LUDecomposition(p).getSolver().getInverse();
RealMatrix coefficients =
new Array2DRowRealMatrix(new double[][] { { 2, 3, -2 }, { -1, 7, 6 }, { 4, -3, -5 } },
false);
DecompositionSolver solver = new LUDecompositionImpl(coefficients).getSolver();
DecompositionSolver solver = new LUDecomposition(coefficients).getSolver();
</source>
Next create a <code>RealVector</code> array to represent the constant
vector B and use <code>solve(RealVector)</code> to solve the system