|
JUK1
|
A helper class to store the L U and pivot matrices. Mainly useful in solving systems of equations. More...
#include <DynamicMatrix.hpp>

Public Member Functions | |
| LUPair (size_t _M) | |
| LUPair (const LUPair< T > &other) | |
| std::string | toString () |
Public Attributes | |
| Matrix< T > | l |
| Matrix< T > | u |
| std::vector< size_t > | p |
| size_t | M |
A helper class to store the L U and pivot matrices. Mainly useful in solving systems of equations.
| T | the value type |
Definition at line 273 of file DynamicMatrix.hpp.
Definition at line 279 of file DynamicMatrix.hpp.
Definition at line 282 of file DynamicMatrix.hpp.
|
inline |
Definition at line 287 of file DynamicMatrix.hpp.
Definition at line 274 of file DynamicMatrix.hpp.
| size_t LUPair< T >::M |
Definition at line 277 of file DynamicMatrix.hpp.
| std::vector<size_t> LUPair< T >::p |
Definition at line 276 of file DynamicMatrix.hpp.
Definition at line 275 of file DynamicMatrix.hpp.