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 SummaryFields inherited from class org.ejml.dense.row.linsol.LinearSolver_DDRB_to_DDRMalg, blockA, blockB, blockX
- 
Constructor SummaryConstructorsConstructorDescription
- 
Method SummaryModifier and TypeMethodDescriptionvoidsolve(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_DDRMgetDecomposition, invert, modifiesA, modifiesB, quality, setA
- 
Constructor Details- 
LinearSolverChol_DDRBpublic LinearSolverChol_DDRB()
- 
LinearSolverChol_DDRB
 
- 
- 
Method Details- 
solveOnly converts the B matrix and passes that onto solve. Te result is then copied into the input 'X' matrix.- Specified by:
- solvein interface- LinearSolver<DMatrixRMaj,- DMatrixRMaj> 
- Overrides:
- solvein class- LinearSolver_DDRB_to_DDRM
- Parameters:
- B- A matrix ℜ m × p. Not modified.
- X- A matrix ℜ n × p, where the solution is written to. Modified.
 
 
-