public abstract class LinearSolverAbstract_FDRM
extends java.lang.Object
implements org.ejml.interfaces.linsol.LinearSolverDense<org.ejml.data.FMatrixRMaj>
An abstract class that provides some common functionality and a default implementation of invert that uses the solve function of the child class.
The extending class must explicity call _setA(FMatrixRMaj)
inside of its LinearSolver.setA(S)
function.
Modifier and Type | Field and Description |
---|---|
protected org.ejml.data.FMatrixRMaj |
A |
protected int |
numCols |
protected int |
numRows |
Constructor and Description |
---|
LinearSolverAbstract_FDRM() |
Modifier and Type | Method and Description |
---|---|
protected void |
_setA(org.ejml.data.FMatrixRMaj A) |
org.ejml.data.FMatrixRMaj |
getA() |
void |
invert(org.ejml.data.FMatrixRMaj A_inv) |