var::matrix::LU
Struct for PLU decomposition. More...
#include "matrix.hpp"
Public Attributes
Name | |
---|---|
matrix | L Lower triangular. |
matrix | U Upper triangular. |
matrix | P Permutation matrix. |
Detailed Description
struct var::matrix::LU;
Struct for PLU decomposition.
Usage:
typename var::matrix<D>::LU a;
Public Attributes Documentation
variable L
matrix L;
Lower triangular.
variable U
matrix U;
Upper triangular.
variable P
matrix P;
Permutation matrix.
Updated on 4 September 2022 at 18:30:41 EEST