|
MyraMath
|
Factors A into L*L', presents solve methods. More...
#include <RCholeskySolver.h>
Public Types | |
| typedef MatrixRange< Precision > | Range |
Public Member Functions | |
| RCholeskySolver (const LowerMatrix< Precision > &A) | |
| Copies from A and factors A = L*L' in-place. | |
| RCholeskySolver (LowerMatrix< Precision > &&A) | |
| Moves out of A and factors A = L*L' in-place. | |
| RCholeskySolver (LowerMatrix< Precision > &A) | |
| Swaps out of A and factors A = L*L' in-place. | |
| RCholeskySolver (InputStream &in) | |
| Constructs from an InputStream. | |
| void | write (OutputStream &out) const |
| Writes to an OutputStream. | |
| void | solve (const Range &B, char side='L', char op='N') const |
| Solves op(A)*X=B or X*op(A)=B, overwrites B with X. | |
| uint64_t | solveL (const Range &B, char side, char op) const |
| Solves op(L)*X=B or X*op(L)=B, overwrites B with X. | |
| std::pair< int, int > | inertia () const |
| Returns inertia I, (n_plus, n_minus). Useful for schur downdates. | |
| int | size () const |
| Size inspector. | |
Factors A into L*L', presents solve methods.
1.8.13