|
Class Summary |
| InvertUsingSolve |
A matrix can be easily inverted by solving a system with an identify matrix. |
| LinearSolverAbstract |
An abstract class that provides some common functionality and a default implementation
of invert that uses the solve function of the child class. |
| LinearSolverFactory |
A factory for generating solvers for systems of the form A*x=b, where A and B are known and x is unknown. |
| LinearSolverSafe<T extends Matrix64F> |
Ensures that any linear solver it is wrapped around will never modify
the input matrices. |
| LinearSolverUnrolled |
Solver which uses an unrolled inverse to compute the inverse. |
| SolvePseudoInverse |
The pseudo-inverse is typically used to solve over determined system for which there is no unique solution.
x=inv(ATA)ATb
where A ∈ ℜ m × n and m ≥ n. |
| WrapLinearSolverBlock64 |
Wrapper that allows LinearSolver to implements LinearSolver. |