Package org.ejml.dense.row.linsol.chol
Class LinearSolverChol_DDRB
java.lang.Object
org.ejml.dense.row.linsol.LinearSolver_DDRB_to_DDRM
org.ejml.dense.row.linsol.chol.LinearSolverChol_DDRB
- All Implemented Interfaces:
LinearSolver<DMatrixRMaj,
,DMatrixRMaj> LinearSolverDense<DMatrixRMaj>
A wrapper around
CholeskyDecomposition_F64
(DMatrixRBlock) that allows
it to be easily used with DMatrixRMaj
.-
Field Summary
Fields inherited from class org.ejml.dense.row.linsol.LinearSolver_DDRB_to_DDRM
alg, blockA, blockB, blockX
-
Constructor Summary
ConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionvoid
solve
(DMatrixRMaj B, DMatrixRMaj X) Only converts the B matrix and passes that onto solve.Methods inherited from class org.ejml.dense.row.linsol.LinearSolver_DDRB_to_DDRM
getDecomposition, invert, modifiesA, modifiesB, quality, setA
-
Constructor Details
-
LinearSolverChol_DDRB
public LinearSolverChol_DDRB() -
LinearSolverChol_DDRB
-
-
Method Details
-
solve
Only converts the B matrix and passes that onto solve. Te result is then copied into the input 'X' matrix.- Specified by:
solve
in interfaceLinearSolver<DMatrixRMaj,
DMatrixRMaj> - Overrides:
solve
in classLinearSolver_DDRB_to_DDRM
- Parameters:
B
- A matrix ℜ m × p. Not modified.X
- A matrix ℜ n × p, where the solution is written to. Modified.
-