mirror of
https://github.com/apache/commons-math.git
synced 2025-02-09 11:35:33 +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
|
||||
public RealVector solve(final RealLinearOperator a,
|
||||
final RealLinearOperator minv, final RealVector b) throws
|
||||
final RealLinearOperator m, final RealVector b) throws
|
||||
NullArgumentException, NonSquareOperatorException,
|
||||
DimensionMismatchException, MaxCountExceededException,
|
||||
NonSelfAdjointOperatorException, NonPositiveDefiniteOperatorException,
|
||||
IllConditionedOperatorException {
|
||||
MathUtils.checkNotNull(a);
|
||||
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