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

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

Detailed Description

Defines a container for the output of a singular value decomposition of a matrix.

Definition at line 162 of file linalg_immutable.f90.

Member Data Documentation

◆ s

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.

◆ u

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.

◆ vt

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.


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