mirror of
https://github.com/apache/commons-math.git
synced 2025-02-10 03:56:19 +00:00
Changed o.a.c.m3.linear.SymmLQ according to MATH-771 (bis).
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1306150 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
c23d010ce1
commit
731daf82cf
@ -913,14 +913,14 @@ public class SymmLQ
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public RealVector solve(final RealLinearOperator a,
|
public RealVector solve(final RealLinearOperator a,
|
||||||
final RealLinearOperator minv, final RealVector b) throws
|
final RealLinearOperator m, final RealVector b) throws
|
||||||
NullArgumentException, NonSquareOperatorException,
|
NullArgumentException, NonSquareOperatorException,
|
||||||
DimensionMismatchException, MaxCountExceededException,
|
DimensionMismatchException, MaxCountExceededException,
|
||||||
NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException,
|
NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException,
|
||||||
IllConditionedOperatorException {
|
IllConditionedOperatorException {
|
||||||
MathUtils.checkNotNull(a);
|
MathUtils.checkNotNull(a);
|
||||||
final RealVector x = new ArrayRealVector(a.getColumnDimension());
|
final RealVector x = new ArrayRealVector(a.getColumnDimension());
|
||||||
return solveInPlace(a, minv, b, x, false, 0.);
|
return solveInPlace(a, m, b, x, false, 0.);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user