Javadoc
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1197470 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b6040640af
commit
aa27c5dc08
|
@ -114,7 +114,7 @@ public abstract class IterativeLinearSolver {
|
||||||
* @throws DimensionMismatchException if {@code b} has dimensions
|
* @throws DimensionMismatchException if {@code b} has dimensions
|
||||||
* inconsistent with {@code a}.
|
* inconsistent with {@code a}.
|
||||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
* @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.
|
* construction.
|
||||||
*/
|
*/
|
||||||
public RealVector solve(RealLinearOperator a, RealVector b)
|
public RealVector solve(RealLinearOperator a, RealVector b)
|
||||||
|
@ -139,7 +139,7 @@ public abstract class IterativeLinearSolver {
|
||||||
* @throws DimensionMismatchException if {@code b} or {@code x0} have
|
* @throws DimensionMismatchException if {@code b} or {@code x0} have
|
||||||
* dimensions inconsistent with {@code a}.
|
* dimensions inconsistent with {@code a}.
|
||||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
* @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.
|
* construction.
|
||||||
*/
|
*/
|
||||||
public RealVector solve(RealLinearOperator a, RealVector b, RealVector x0)
|
public RealVector solve(RealLinearOperator a, RealVector b, RealVector x0)
|
||||||
|
@ -163,7 +163,7 @@ public abstract class IterativeLinearSolver {
|
||||||
* @throws DimensionMismatchException if {@code b} or {@code x0} have
|
* @throws DimensionMismatchException if {@code b} or {@code x0} have
|
||||||
* dimensions inconsistent with {@code a}.
|
* dimensions inconsistent with {@code a}.
|
||||||
* @throws MaxCountExceededException at exhaustion of the iteration count,
|
* @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.
|
* construction.
|
||||||
*/
|
*/
|
||||||
public abstract RealVector solveInPlace(RealLinearOperator a, RealVector b,
|
public abstract RealVector solveInPlace(RealLinearOperator a, RealVector b,
|
||||||
|
|
Loading…
Reference in New Issue