opensurgsim
|
Derivation for sparse LU solver. More...
#include <LinearSparseSolveAndInverse.h>
Public Member Functions | |
void | setMatrix (const SparseMatrix &matrix) override |
Set the linear solver matrix. More... | |
Matrix | getInverse () const override |
Matrix | solve (const Matrix &b) const override |
Solve the linear system (matrix.x=b) using the matrix provided by the latest setMatrix call for all columns of the rhs matrix b. More... | |
Additional Inherited Members | |
![]() | |
SparseMatrix | m_matrix |
A copy of the system matrix for use when an inverse is necessary. | |
Derivation for sparse LU solver.
|
overridevirtual |
Reimplemented from SurgSim::Math::LinearSparseSolveAndInverse.
|
overridevirtual |
Set the linear solver matrix.
matrix | the new matrix to solve/inverse for |
Implements SurgSim::Math::LinearSparseSolveAndInverse.
|
overridevirtual |
Solve the linear system (matrix.x=b) using the matrix provided by the latest setMatrix call for all columns of the rhs matrix b.
b | The rhs matrix |
Implements SurgSim::Math::LinearSparseSolveAndInverse.