Removed double[] solve(double[]) from SingularValueDecompositionImpl.Solver

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1165508 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2011-09-06 06:24:11 +00:00
parent 7471813924
commit ca460b7c22
1 changed files with 0 additions and 15 deletions

View File

@ -605,21 +605,6 @@ public class SingularValueDecompositionImpl implements SingularValueDecompositio
this.nonSingular = nonSingular;
}
/**
* Solve the linear equation A × X = B in least square sense.
* <p>
* The m&times;n matrix A may not be square, the solution X is such that
* ||A &times; X - B|| is minimal.
* </p>
* @param b Right-hand side of the equation A &times; X = B
* @return a vector X that minimizes the two norm of A &times; X - B
* @throws org.apache.commons.math.exception.DimensionMismatchException
* if the matrices dimensions do not match.
*/
public double[] solve(final double[] b) {
return pseudoInverse.operate(b);
}
/**
* Solve the linear equation A &times; X = B in least square sense.
* <p>