linalg 1.6.1
A linear algebra library that provides a user-friendly interface to several BLAS and LAPACK routines.
Loading...
Searching...
No Matches
linalg_immutable::lu_results_cmplx Type Reference

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...
 

Detailed Description

Defines a container for the output of an LU factorization.

Definition at line 126 of file linalg_immutable.f90.

Member Data Documentation

◆ l

complex(real64), dimension(:,:), allocatable linalg_immutable::lu_results_cmplx::l

The lower triangular matrix L.

Definition at line 128 of file linalg_immutable.f90.

◆ p

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.

◆ u

complex(real64), dimension(:,:), allocatable linalg_immutable::lu_results_cmplx::u

The upper triangular matrix U.

Definition at line 130 of file linalg_immutable.f90.


The documentation for this type was generated from the following file: