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 Type Reference

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

Detailed Description

Defines a container for the output of an LU factorization.

Definition at line 115 of file linalg_immutable.f90.

Member Data Documentation

◆ l

real(real64), dimension(:,:), allocatable linalg_immutable::lu_results::l

The lower triangular matrix L.

Definition at line 117 of file linalg_immutable.f90.

◆ p

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.

◆ u

real(real64), dimension(:,:), allocatable linalg_immutable::lu_results::u

The upper triangular matrix U.

Definition at line 119 of file linalg_immutable.f90.


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