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 a singular value decomposition of a matrix. More...
Public Attributes | |
real(real64), dimension(:,:), allocatable | u |
The M-by-M orthogonal matrix U. More... | |
real(real64), dimension(:,:), allocatable | s |
The M-by-N matrix containing the singular values on its diagonal. More... | |
real(real64), dimension(:,:), allocatable | vt |
The N-by-N transpose of the matrix V. More... | |
Defines a container for the output of a singular value decomposition of a matrix.
Definition at line 162 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::svd_results::s |
The M-by-N matrix containing the singular values on its diagonal.
Definition at line 166 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::svd_results::u |
The M-by-M orthogonal matrix U.
Definition at line 164 of file linalg_immutable.f90.
real(real64), dimension(:,:), allocatable linalg_immutable::svd_results::vt |
The N-by-N transpose of the matrix V.
Definition at line 168 of file linalg_immutable.f90.