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:
Sebastien Brisard 2011-09-09 02:13:31 +00:00
parent ac3c66add4
commit 58973e521f
1 changed files with 0 additions and 5 deletions

View File

@ -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;