diff --git a/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java b/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java index 98d379f77..163df51ce 100644 --- a/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java +++ b/src/main/java/org/apache/commons/math/linear/FieldDecompositionSolver.java @@ -37,18 +37,6 @@ import org.apache.commons.math.FieldElement; */ public interface FieldDecompositionSolver> { - /** Solve the linear equation A × X = B for matrices A. - *

The A matrix is implicit, it is provided by the underlying - * decomposition algorithm.

- * @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. - */ - //T[] solve(final T[] b); - /** Solve the linear equation A × X = B for matrices A. *

The A matrix is implicit, it is provided by the underlying * decomposition algorithm.