Removed double[][] solve(double[][]) from QRDecompositionImpl.Solver
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1166964 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
ac3c66add4
commit
58973e521f
|
@ -317,11 +317,6 @@ public class QRDecompositionImpl implements QRDecomposition {
|
|||
return new ArrayRealVector(x, false);
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public double[][] solve(double[][] b) {
|
||||
return solve(new BlockRealMatrix(b)).getData();
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
public RealMatrix solve(RealMatrix b) {
|
||||
final int n = qrt.length;
|
||||
|
|
Loading…
Reference in New Issue