PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgesvd (f08kp)
Purpose
nag_lapack_zgesvd (f08kp) computes the singular value decomposition (SVD) of a complex by matrix , optionally computing the left and/or right singular vectors.
Syntax
[
a,
s,
u,
vt,
rwork,
info] = f08kp(
jobu,
jobvt,
a, 'm',
m, 'n',
n)
[
a,
s,
u,
vt,
rwork,
info] = nag_lapack_zgesvd(
jobu,
jobvt,
a, 'm',
m, 'n',
n)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 23: |
rwork was made an output parameter |
Description
The SVD is written as
where
is an
by
matrix which is zero except for its
diagonal elements,
is an
by
unitary matrix, and
is an
by
unitary matrix. The diagonal elements of
are the singular values of
; they are real and non-negative, and are returned in descending order. The first
columns of
and
are the left and right singular vectors of
.
Note that the function returns , not .
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:
– string (length ≥ 1)
-
Specifies options for computing all or part of the matrix
.
- All columns of are returned in array u.
- The first columns of (the left singular vectors) are returned in the array u.
- The first columns of (the left singular vectors) are overwritten on the array a.
- No columns of (no left singular vectors) are computed.
Constraint:
, , or .
- 2:
– string (length ≥ 1)
-
Specifies options for computing all or part of the matrix
.
- All rows of are returned in the array vt.
- The first rows of (the right singular vectors) are returned in the array vt.
- The first rows of (the right singular vectors) are overwritten on the array a.
- No rows of (no right singular vectors) are computed.
Constraints:
- , , or ;
- jobvt and jobu cannot both be .
- 3:
– complex array
-
The first dimension of the array
a must be at least
.
The second dimension of the array
a must be at least
.
The by matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a.
, the number of rows of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
a.
, the number of columns of the matrix .
Constraint:
.
Output Parameters
- 1:
– complex array
-
The first dimension of the array
a will be
.
The second dimension of the array
a will be
.
If
,
a is overwritten with the first
columns of
(the left singular vectors, stored column-wise).
If
,
a is overwritten with the first
rows of
(the right singular vectors, stored row-wise).
If
and
, the contents of
a are destroyed.
- 2:
– double array
-
The dimension of the array
s will be
The singular values of , sorted so that .
- 3:
– complex array
-
The first dimension,
, of the array
u will be
- if or , ;
- otherwise .
The second dimension of the array
u will be
if
,
if
and
otherwise.
If
,
u contains the
by
unitary matrix
.
If
,
u contains the first
columns of
(the left singular vectors, stored column-wise).
If
or
,
u is not referenced.
- 4:
– complex array
-
The first dimension,
, of the array
vt will be
- if , ;
- if , ;
- otherwise .
The second dimension of the array
vt will be
if
or
and
otherwise.
If
,
vt contains the
by
unitary matrix
.
If
,
vt contains the first
rows of
(the right singular vectors, stored row-wise).
If
or
,
vt is not referenced.
- 5:
– double array
-
The dimension of the array
rwork will be
If , contains the unconverged superdiagonal elements of an upper bidiagonal matrix whose diagonal is in (not necessarily sorted). satisfies , so it has the same singular values as , and singular vectors related by and .
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
jobu, 2:
jobvt, 3:
m, 4:
n, 5:
a, 6:
lda, 7:
s, 8:
u, 9:
ldu, 10:
vt, 11:
ldvt, 12:
work, 13:
lwork, 14:
rwork, 15:
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.
-
-
If
nag_lapack_zgesvd (f08kp) did not converge,
info specifies how many superdiagonals of an intermediate bidiagonal form did not converge to zero. See the description of
rwork above for details.
Accuracy
The computed singular value decomposition is nearly the exact singular value decomposition for a nearby matrix
, where
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 when and otherwise.
The singular values are returned in descending order.
The real analogue of this function is
nag_lapack_dgesvd (f08kb).
Example
This example finds the singular values and left and right singular vectors of the
by
matrix
together with approximate error bounds for the computed singular values and vectors.
The example program for
nag_lapack_zgesdd (f08kr) illustrates finding a singular value decomposition for the case
.
Open in the MATLAB editor:
f08kp_example
function f08kp_example
fprintf('f08kp example results\n\n');
a = [ 0.96 - 0.81i, -0.03 + 0.96i, -0.91 + 2.06i, -0.05 + 0.41i;
-0.98 + 1.98i, -1.20 + 0.19i, -0.66 + 0.42i, -0.81 + 0.56i;
0.62 - 0.46i, 1.01 + 0.02i, 0.63 - 0.17i, -1.11 + 0.60i;
-0.37 + 0.38i, 0.19 - 0.54i, -0.98 - 0.36i, 0.22 - 0.20i;
0.83 + 0.51i, 0.20 + 0.01i, -0.17 - 0.46i, 1.47 + 1.59i;
1.08 - 0.28i, 0.20 - 0.12i, -0.07 + 1.23i, 0.26 + 0.26i];
[m,n] = size(a);
b = ones(m,1);
jobu = 'Singular vectors (U)';
jobvt = 'Singular vectors (V)';
[~, s, u, vt, rwork, info] = f08kp( ...
jobu, jobvt, a);
disp('Singular values of A');
disp(s');
y = u'*b;
y = y./s;
x = vt'*y;
disp('Least squares solution:');
disp(x);
disp('Norm of Residual:');
disp(norm(b - a*x));
f08kp example results
Singular values of A
3.9994 3.0003 1.9944 0.9995
Least squares solution:
-0.0719 - 0.2761i
0.6796 + 0.4326i
-0.3832 - 0.5447i
0.0096 - 0.3489i
Norm of Residual:
1.5266
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015