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