public class LinearSolverLu extends LinearSolverLuBase
decompA, numCols, numRows| Constructor and Description |
|---|
LinearSolverLu(LUDecompositionBase decomp) |
LinearSolverLu(LUDecompositionBase decomp,
boolean doImprove) |
| Modifier and Type | Method and Description |
|---|---|
void |
solve(DenseMatrix64F b,
DenseMatrix64F x)
Solves for X in the linear system, A*X=B.
|
improveSol, invert, modifiesA, modifiesB, quality, setA_setA, getApublic LinearSolverLu(LUDecompositionBase decomp)
public LinearSolverLu(LUDecompositionBase decomp, boolean doImprove)
public void solve(DenseMatrix64F b, DenseMatrix64F x)
LinearSolverSolves for X in the linear system, A*X=B.
In some implementations 'B' and 'X' can be the same instance of a variable. Call
LinearSolver.modifiesB() to determine if 'B' is modified.
b - A matrix ℜ m × p. Might be modified.x - A matrix ℜ n × p, where the solution is written to. Modified.Copyright © 2013. All Rights Reserved.