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:
parent
a70f833db4
commit
5f0e374d4f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue