public abstract class LinearSolverAbstract_ZDRM
extends java.lang.Object
implements org.ejml.interfaces.linsol.LinearSolverDense<org.ejml.data.ZMatrixRMaj>
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(ZMatrixRMaj)
inside of its LinearSolver.setA(S)
function.
Modifier and Type | Field and Description |
---|---|
protected org.ejml.data.ZMatrixRMaj |
A |
protected int |
numCols |
protected int |
numRows |
protected int |
stride |
Constructor and Description |
---|
LinearSolverAbstract_ZDRM() |
Modifier and Type | Method and Description |
---|---|
protected void |
_setA(org.ejml.data.ZMatrixRMaj A) |
org.ejml.data.ZMatrixRMaj |
getA() |
void |
invert(org.ejml.data.ZMatrixRMaj A_inv) |