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 | |
complex(real64), dimension(:,:), allocatable | l |
The lower triangular matrix L. More... | |
complex(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 126 of file linalg_immutable.f90.
complex(real64), dimension(:,:), allocatable linalg_immutable::lu_results_cmplx::l |
The lower triangular matrix L.
Definition at line 128 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::lu_results_cmplx::p |
The row pivot tracking matrix P where P A = L U.
Definition at line 132 of file linalg_immutable.f90.
complex(real64), dimension(:,:), allocatable linalg_immutable::lu_results_cmplx::u |
The upper triangular matrix U.
Definition at line 130 of file linalg_immutable.f90.