public class LinearSolverLu extends LinearSolverLuBase
decompA, numCols, numRows| Constructor and Description |
|---|
LinearSolverLu(LUDecompositionBase_D64 decomp) |
LinearSolverLu(LUDecompositionBase_D64 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.
|
getDecomposer, improveSol, invert, modifiesA, modifiesB, quality, setA_setA, getApublic LinearSolverLu(LUDecompositionBase_D64 decomp)
public LinearSolverLu(LUDecompositionBase_D64 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.