Removed sole(double[]) from the DecompositionSolver interface (see JIRA MATH-653).
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1165188 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
5cfa8ccf09
commit
b919c5ed1f
|
@ -35,18 +35,6 @@ package org.apache.commons.math.linear;
|
|||
*/
|
||||
public interface DecompositionSolver {
|
||||
|
||||
/** Solve the linear equation A × X = B for matrices A.
|
||||
* <p>The A matrix is implicit, it is provided by the underlying
|
||||
* decomposition algorithm.</p>
|
||||
* @param b right-hand side of the equation A × X = B
|
||||
* @return a vector X that minimizes the two norm of A × X - B
|
||||
* @throws org.apache.commons.math.exception.DimensionMismatchException
|
||||
* if the matrices dimensions do not match.
|
||||
* @throws SingularMatrixException
|
||||
* if the decomposed matrix is singular.
|
||||
*/
|
||||
double[] solve(final double[] b);
|
||||
|
||||
/** Solve the linear equation A × X = B for matrices A.
|
||||
* <p>The A matrix is implicit, it is provided by the underlying
|
||||
* decomposition algorithm.</p>
|
||||
|
|
Loading…
Reference in New Issue