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