public class LinearSolverLuKJI_D64 extends LinearSolverLuBase_D64
LinearSolverLu_D64 in this approach
and b and x can't be the same instance, which means it has slightly less functionality.decompA, numCols, numRows| Constructor and Description |
|---|
LinearSolverLuKJI_D64(LUDecompositionBase_D64 decomp) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
setA(org.ejml.data.DenseMatrix64F A) |
void |
solve(org.ejml.data.DenseMatrix64F b,
org.ejml.data.DenseMatrix64F x)
An other implementation of solve() that processes the matrices in a different order.
|
getDecomposition, improveSol, invert, modifiesA, modifiesB, quality_setA, getApublic LinearSolverLuKJI_D64(LUDecompositionBase_D64 decomp)
public boolean setA(org.ejml.data.DenseMatrix64F A)
setA in interface org.ejml.interfaces.linsol.LinearSolver<org.ejml.data.DenseMatrix64F>setA in class LinearSolverLuBase_D64public void solve(org.ejml.data.DenseMatrix64F b,
org.ejml.data.DenseMatrix64F x)
solve(org.ejml.data.DenseMatrix64F, org.ejml.data.DenseMatrix64F) and is more complicated.
It is being kept around to avoid future replication of work.b - A matrix that is n by m. Not modified.x - An n by m matrix where the solution is writen to. Modified.