NAG FL Interface
f08kbf (dgesvd)

1 Purpose

f08kbf computes the singular value decomposition (SVD) of a real m by n matrix A, optionally computing the left and/or right singular vectors.

2 Specification

Fortran Interface
Subroutine f08kbf ( jobu, jobvt, m, n, a, lda, s, u, ldu, vt, ldvt, work, lwork, info)
Integer, Intent (In) :: m, n, lda, ldu, ldvt, lwork
Integer, Intent (Out) :: info
Real (Kind=nag_wp), Intent (Inout) :: a(lda,*), s(*), u(ldu,*), vt(ldvt,*)
Real (Kind=nag_wp), Intent (Out) :: work(max(1,lwork))
Character (1), Intent (In) :: jobu, jobvt
C Header Interface
#include <nag.h>
void  f08kbf_ (const char *jobu, const char *jobvt, const Integer *m, const Integer *n, double a[], const Integer *lda, double s[], double u[], const Integer *ldu, double vt[], const Integer *ldvt, double work[], const Integer *lwork, Integer *info, const Charlen length_jobu, const Charlen length_jobvt)
The routine may be called by the names f08kbf, nagf_lapackeig_dgesvd or its LAPACK name dgesvd.

3 Description

The SVD is written as
A = UΣVT ,  
where Σ is an m by n matrix which is zero except for its minm,n diagonal elements, U is an m by m orthogonal matrix, and V is an n by n orthogonal matrix. The diagonal elements of Σ are the singular values of A; they are real and non-negative, and are returned in descending order. The first minm,n columns of U and V are the left and right singular vectors of A.
Note that the routine returns VT, not V.

4 References

Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999) LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia https://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

5 Arguments

1: jobu Character(1) Input
On entry: specifies options for computing all or part of the matrix U.
jobu='A'
All m columns of U are returned in array u.
jobu='S'
The first minm,n columns of U (the left singular vectors) are returned in the array u.
jobu='O'
The first minm,n columns of U (the left singular vectors) are overwritten on the array a.
jobu='N'
No columns of U (no left singular vectors) are computed.
Constraint: jobu='A', 'S', 'O' or 'N'.
2: jobvt Character(1) Input
On entry: specifies options for computing all or part of the matrix VT.
jobvt='A'
All n rows of VT are returned in the array vt.
jobvt='S'
The first minm,n rows of VT (the right singular vectors) are returned in the array vt.
jobvt='O'
The first minm,n rows of VT (the right singular vectors) are overwritten on the array a.
jobvt='N'
No rows of VT (no right singular vectors) are computed.
Constraints:
  • jobvt='A', 'S', 'O' or 'N';
  • jobvt'O' or jobu'O'.
3: m Integer Input
On entry: m, the number of rows of the matrix A.
Constraint: m0.
4: n Integer Input
On entry: n, the number of columns of the matrix A.
Constraint: n0.
5: alda* Real (Kind=nag_wp) array Input/Output
Note: the second dimension of the array a must be at least max1,n.
On entry: the m by n matrix A.
On exit: if jobu='O', a is overwritten with the first minm,n columns of U (the left singular vectors, stored column-wise).
If jobvt='O', a is overwritten with the first minm,n rows of VT (the right singular vectors, stored row-wise).
If jobu'O' and jobvt'O', the contents of a are destroyed.
6: lda Integer Input
On entry: the first dimension of the array a as declared in the (sub)program from which f08kbf is called.
Constraint: ldamax1,m.
7: s* Real (Kind=nag_wp) array Output
Note: the dimension of the array s must be at least max1,minm,n .
On exit: the singular values of A, sorted so that sisi+1.
8: uldu* Real (Kind=nag_wp) array Output
Note: the second dimension of the array u must be at least max1,m if jobu='A', max1,minm,n if jobu='S', and at least 1 otherwise.
On exit: if jobu='A', u contains the m by m orthogonal matrix U.
If jobu='S', u contains the first minm,n columns of U (the left singular vectors, stored column-wise).
If jobu='N' or 'O', u is not referenced.
9: ldu Integer Input
On entry: the first dimension of the array u as declared in the (sub)program from which f08kbf is called.
Constraints:
  • if jobu='A' or 'S', ldu max1,m ;
  • otherwise ldu1.
10: vtldvt* Real (Kind=nag_wp) array Output
Note: the second dimension of the array vt must be at least max1,n if jobvt='A' or 'S', and at least 1 otherwise.
On exit: if jobvt='A', vt contains the n by n orthogonal matrix VT.
If jobvt='S', vt contains the first minm,n rows of VT (the right singular vectors, stored row-wise).
If jobvt='N' or 'O', vt is not referenced.
11: ldvt Integer Input
On entry: the first dimension of the array vt as declared in the (sub)program from which f08kbf is called.
Constraints:
  • if jobvt='A', ldvt max1,n ;
  • if jobvt='S', ldvt max1,minm,n ;
  • otherwise ldvt1.
12: workmax1,lwork Real (Kind=nag_wp) array Workspace
On exit: if info=0, work1 returns the optimal lwork.
If info>0, work2:minm,n contains the unconverged superdiagonal elements of an upper bidiagonal matrix B whose diagonal is in s (not necessarily sorted). B satisfies A=UBVT, so it has the same singular values as A, and singular vectors related by U and VT.
13: lwork Integer Input
On entry: the dimension of the array work as declared in the (sub)program from which f08kbf is called.
If lwork=-1, a workspace query is assumed; the routine only calculates the optimal size of the work array, returns this value as the first entry of the work array, and no error message related to lwork is issued.
Suggested value: for optimal performance, lwork should generally be larger. Consider increasing lwork by at least nb×minm,n , where nb is the optimal block size.
Constraint: lwork max1, 3 × minm,n + maxm,n , 5 × minm,n .
14: info Integer Output
On exit: info=0 unless the routine detects an error (see Section 6).

6 Error Indicators and Warnings

info<0
If info=-i, argument i had an illegal value. An explanatory message is output, and execution of the program is terminated.
info>0
If f08kbf did not converge, info specifies how many superdiagonals of an intermediate bidiagonal form did not converge to zero.

7 Accuracy

The computed singular value decomposition is nearly the exact singular value decomposition for a nearby matrix A+E , where
E2 = Oε A2 ,  
and ε is the machine precision. In addition, the computed singular vectors are nearly orthogonal to working precision. See Section 4.9 of Anderson et al. (1999) for further details.

8 Parallelism and Performance

f08kbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f08kbf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

The total number of floating-point operations is approximately proportional to mn2 when m>n and m2n otherwise.
The singular values are returned in descending order.
The complex analogue of this routine is f08kpf.

10 Example

This example finds the singular values and left and right singular vectors of the 6 by 4 matrix
A = 2.27 -1.54 1.15 -1.94 0.28 -1.67 0.94 -0.78 -0.48 -3.09 0.99 -0.21 1.07 1.22 0.79 0.63 -2.35 2.93 -1.45 2.30 0.62 -7.39 1.03 -2.57 ,  
together with approximate error bounds for the computed singular values and vectors.
The example program for f08kdf illustrates finding a singular value decomposition for the case mn.

10.1 Program Text

Program Text (f08kbfe.f90)

10.2 Program Data

Program Data (f08kbfe.d)

10.3 Program Results

Program Results (f08kbfe.r)