hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_lapack_dgesdd (f08kd)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_lapack_dgesdd (f08kd) computes the singular value decomposition (SVD) of a real m by n matrix A, optionally computing the left and/or right singular vectors, by using a divide-and-conquer method.

Syntax

[a, s, u, vt, info] = f08kd(jobz, a, 'm', m, 'n', n)
[a, s, u, vt, info] = nag_lapack_dgesdd(jobz, a, 'm', m, 'n', n)

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 function returns VT, not V.

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 http://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore

Parameters

Compulsory Input Parameters

1:     jobz – string (length ≥ 1)
Specifies options for computing all or part of the matrix U.
jobz='A'
All m columns of U and all n rows of VT are returned in the arrays u and vt.
jobz='S'
The first minm,n columns of U and the first minm,n rows of VT are returned in the arrays u and vt.
jobz='O'
If mn, the first n columns of U are overwritten on the array a and all rows of VT are returned in the array vt. Otherwise, all columns of U are returned in the array u and the first m rows of VT are overwritten in the array vt.
jobz='N'
No columns of U or rows of VT are computed.
Constraint: jobz='A', 'S', 'O' or 'N'.
2:     alda: – double array
The first dimension of the array a must be at least max1,m.
The second dimension of the array a must be at least max1,n.
The m by n matrix A.

Optional Input Parameters

1:     m int64int32nag_int scalar
Default: the first dimension of the array a.
m, the number of rows of the matrix A.
Constraint: m0.
2:     n int64int32nag_int scalar
Default: the second dimension of the array a.
n, the number of columns of the matrix A.
Constraint: n0.

Output Parameters

1:     alda: – double array
The first dimension of the array a will be max1,m.
The second dimension of the array a will be max1,n.
If jobz='O', a is overwritten with the first n columns of U (the left singular vectors, stored column-wise) if mn; a is overwritten with the first m rows of VT (the right singular vectors, stored row-wise) otherwise.
If jobz'O', the contents of a are destroyed.
2:     sminm,n – double array
The singular values of A, sorted so that sisi+1.
3:     uldu: – double array
The first dimension, ldu, of the array u will be
  • if jobz='S' or 'A' or jobz='O' and m<n, ldu= max1,m ;
  • otherwise ldu=1.
The second dimension of the array u will be max1,m if jobz='A' or jobz='O' and m<n, max1,minm,n if jobz='S' and 1 otherwise.
If jobz='A' or jobz='O' and m<n, u contains the m by m orthogonal matrix U.
If jobz='S', u contains the first minm,n columns of U (the left singular vectors, stored column-wise).
If jobz='O' and mn, or jobz='N', u is not referenced.
4:     vtldvt: – double array
The first dimension, ldvt, of the array vt will be
  • if jobz='A' or jobz='O' and mn, ldvt= max1,n ;
  • if jobz='S', ldvt= max1,minm,n ;
  • otherwise ldvt=1.
The second dimension of the array vt will be max1,n if jobz='A' or 'S' or jobz='O' and mn and 1 otherwise.
If jobz='A' or jobz='O' and mn, vt contains the n by n orthogonal matrix VT.
If jobz='S', vt contains the first minm,n rows of VT (the right singular vectors, stored row-wise).
If jobz='O' and m<n, or jobz='N', vt is not referenced.
5:     info int64int32nag_int scalar
info=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

   info=-i
If info=-i, parameter i had an illegal value on entry. The parameters are numbered as follows:
1: jobz, 2: m, 3: n, 4: a, 5: lda, 6: s, 7: u, 8: ldu, 9: vt, 10: ldvt, 11: work, 12: lwork, 13: iwork, 14: info.
It is possible that info refers to a parameter that is omitted from the MATLAB interface. This usually indicates that an error in one of the other input parameters has caused an incorrect value to be inferred.
   info>0
nag_lapack_dgesdd (f08kd) did not converge, the updating process failed.

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.

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 function is nag_lapack_zgesvd (f08kp).

Example

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


fprintf('f08kd example results\n\n');

a = [ 2.27,  0.28, -0.48, 1.07, -2.35,  0.62;
     -1.54, -1.67, -3.09, 1.22,  2.93, -7.39;
      1.15,  0.94,  0.99, 0.79, -1.45,  1.03;
     -1.94, -0.78, -0.21, 0.63,  2.30, -2.57];
m = int64(size(a,1));
n = int64(size(a,2));

jobz = 'Singular vector parts of U and VT';
[~, s, u, vt, info] = f08kd( ...
                             jobz, a);

disp('Singular values of A');
disp(s');
disp('Left singular vectors');
disp(u);
disp('Right singular vectors (by row)');
disp(vt);


% Singular values error bound
serrbd = x02aj*s(1);
% Reciprocal condition numbers for singular vectors
[rcondu, info] = f08fl( ...
		        'Left', m, n, s);
[rcondv, info] = f08fl( ...
		        'Right', m, n, s);

% Sigular vector error bounds
uerrbd = serrbd./rcondu;
verrbd = serrbd./rcondv;

disp('Error estimate for the singular values');
fprintf('%12.1e\n',serrbd);
disp('Error estimates for the left singular vectors');
fprintf('%12.1e',uerrbd);
fprintf('\n');
disp('Error estimates for the right singular vectors');
fprintf('%12.1e',verrbd);
fprintf('\n');


f08kd example results

Singular values of A
    9.9966    3.6831    1.3569    0.5000

Left singular vectors
   -0.1921    0.8030   -0.0041    0.5642
    0.8794    0.3926    0.0752   -0.2587
   -0.2140    0.2980   -0.7827   -0.5027
    0.3795   -0.3351   -0.6178    0.6017

Right singular vectors (by row)
   -0.2774   -0.2020   -0.2918    0.0938    0.4213   -0.7816
    0.6003    0.0301   -0.3348    0.3699   -0.5266   -0.3353
    0.1277   -0.2805   -0.6453   -0.6781   -0.0413    0.1645
   -0.1323   -0.7034   -0.1906    0.5399    0.0575    0.3957

Error estimate for the singular values
     1.1e-15
Error estimates for the left singular vectors
     1.8e-16     4.8e-16     1.3e-15     1.3e-15
Error estimates for the right singular vectors
     1.8e-16     4.8e-16     1.3e-15     2.2e-15

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015