Package org.ejml.dense.row.linsol.chol
Class LinearSolverChol_FDRB
java.lang.Object
org.ejml.dense.row.linsol.LinearSolver_FDRB_to_FDRM
org.ejml.dense.row.linsol.chol.LinearSolverChol_FDRB
- All Implemented Interfaces:
LinearSolver<FMatrixRMaj,,FMatrixRMaj> LinearSolverDense<FMatrixRMaj>
@Generated("org.ejml.dense.row.linsol.chol.LinearSolverChol_DDRB")
public class LinearSolverChol_FDRB
extends LinearSolver_FDRB_to_FDRM
A wrapper around
CholeskyDecomposition_F32(FMatrixRBlock) that allows
it to be easily used with FMatrixRMaj.-
Field Summary
Fields inherited from class org.ejml.dense.row.linsol.LinearSolver_FDRB_to_FDRM
alg, blockA, blockB, blockX -
Constructor Summary
ConstructorsConstructorDescription -
Method Summary
Modifier and TypeMethodDescriptionvoidsolve(FMatrixRMaj B, FMatrixRMaj X) Only converts the B matrix and passes that onto solve.Methods inherited from class org.ejml.dense.row.linsol.LinearSolver_FDRB_to_FDRM
getDecomposition, invert, modifiesA, modifiesB, quality, setA
-
Constructor Details
-
LinearSolverChol_FDRB
public LinearSolverChol_FDRB() -
LinearSolverChol_FDRB
-
-
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:
solvein interfaceLinearSolver<FMatrixRMaj,FMatrixRMaj> - Overrides:
solvein classLinearSolver_FDRB_to_FDRM- Parameters:
B- A matrix ℜ m × p. Not modified.X- A matrix ℜ n × p, where the solution is written to. Modified.
-