Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1197474 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
aa27c5dc08
commit
010bdd1762
|
@ -71,7 +71,7 @@ public abstract class PreconditionedIterativeLinearSolver
|
|||
* @throws DimensionMismatchException if {@code m}, {@code b} or {@code x0}
|
||||
* have dimensions inconsistent with {@code a}.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public RealVector solve(final RealLinearOperator a,
|
||||
|
@ -154,7 +154,7 @@ public abstract class PreconditionedIterativeLinearSolver
|
|||
* @throws DimensionMismatchException if {@code m} or {@code b} have
|
||||
* dimensions inconsistent with {@code a}.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public RealVector solve(RealLinearOperator a,
|
||||
|
@ -182,7 +182,7 @@ public abstract class PreconditionedIterativeLinearSolver
|
|||
* @throws DimensionMismatchException if {@code m}, {@code b} or {@code x0}
|
||||
* have dimensions inconsistent with {@code a}.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public abstract RealVector solveInPlace(RealLinearOperator a,
|
||||
|
|
|
@ -839,7 +839,7 @@ public class SymmLQ
|
|||
* definite.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
@ -892,7 +892,7 @@ public class SymmLQ
|
|||
* definite.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public RealVector solve(final RealLinearOperator a,
|
||||
|
@ -929,7 +929,7 @@ public class SymmLQ
|
|||
* definite.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
@ -959,7 +959,7 @@ public class SymmLQ
|
|||
* {@code true}, and {@code a} is not self-adjoint.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
@ -1004,7 +1004,7 @@ public class SymmLQ
|
|||
* {@code true}, and {@code a} is not self-adjoint.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public RealVector solve(final RealLinearOperator a, final RealVector b,
|
||||
|
@ -1034,7 +1034,7 @@ public class SymmLQ
|
|||
* {@code true}, and {@code a} is not self-adjoint.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
@ -1069,7 +1069,7 @@ public class SymmLQ
|
|||
* definite.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
@ -1122,7 +1122,7 @@ public class SymmLQ
|
|||
* definite.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
public RealVector solveInPlace(final RealLinearOperator a,
|
||||
|
@ -1190,7 +1190,7 @@ public class SymmLQ
|
|||
* {@code true}, and {@code a} or {@code m} is not self-adjoint.
|
||||
* @throws IllConditionedOperatorException if {@code a} is ill-conditioned.
|
||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
||||
* unless a custom {@link MaxCountExceededCallback callback} has been set at
|
||||
* unless a custom {@link org.apache.commons.math.util.Incrementor.MaxCountExceededCallback callback} has been set at
|
||||
* construction.
|
||||
*/
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue