linalg 1.6.1
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
|
Defines a container for the output of an LU factorization. More...
Public Attributes | |
real(real64), dimension(:,:), allocatable | l |
The lower triangular matrix L. More... | |
real(real64), dimension(:,:), allocatable | u |
The upper triangular matrix U. More... | |
real(real64), dimension(:,:), allocatable | p |
The row pivot tracking matrix P where P A = L U. More... | |
Defines a container for the output of an LU factorization.
Definition at line 115 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::lu_results::l |
The lower triangular matrix L.
Definition at line 117 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::lu_results::p |
The row pivot tracking matrix P where P A = L U.
Definition at line 121 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::lu_results::u |
The upper triangular matrix U.
Definition at line 119 of file linalg_immutable.f90.