PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dbdsqr (f08me)
Purpose
nag_lapack_dbdsqr (f08me) computes the singular value decomposition of a real upper or lower bidiagonal matrix, or of a real general matrix which has been reduced to bidiagonal form.
Syntax
[
d,
e,
vt,
u,
c,
info] = f08me(
uplo,
d,
e,
vt,
u,
c, 'n',
n, 'ncvt',
ncvt, 'nru',
nru, 'ncc',
ncc)
[
d,
e,
vt,
u,
c,
info] = nag_lapack_dbdsqr(
uplo,
d,
e,
vt,
u,
c, 'n',
n, 'ncvt',
ncvt, 'nru',
nru, 'ncc',
ncc)
Description
nag_lapack_dbdsqr (f08me) computes the singular values and, optionally, the left or right singular vectors of a real upper or lower bidiagonal matrix
. In other words, it can compute the singular value decomposition (SVD) of
as
Here
is a diagonal matrix with real diagonal elements
(the singular values of
), such that
is an orthogonal matrix whose columns are the left singular vectors
;
is an orthogonal matrix whose rows are the right singular vectors
. Thus
To compute
and/or
, the arrays
u and/or
vt must be initialized to the unit matrix before
nag_lapack_dbdsqr (f08me) is called.
The function may also be used to compute the SVD of a real general matrix
which has been reduced to bidiagonal form by an orthogonal transformation:
. If
is
by
with
, then
is
by
and
is
by
; if
is
by
with
, then
is
by
and
is
by
. In this case, the matrices
and/or
must be formed explicitly by
nag_lapack_dorgbr (f08kf) and passed to
nag_lapack_dbdsqr (f08me) in the arrays
u and/or
vt respectively.
nag_lapack_dbdsqr (f08me) also has the capability of forming , where is an arbitrary real matrix; this is needed when using the SVD to solve linear least squares problems.
nag_lapack_dbdsqr (f08me) uses two different algorithms. If any singular vectors are required (i.e., if
or
or
), the bidiagonal
algorithm is used, switching between zero-shift and implicitly shifted forms to preserve the accuracy of small singular values, and switching between
and
variants in order to handle graded matrices effectively (see
Demmel and Kahan (1990)). If only singular values are required (i.e., if
), they are computed by the differential qd algorithm (see
Fernando and Parlett (1994)), which is faster and can achieve even greater accuracy.
The singular vectors are normalized so that , but are determined only to within a factor .
References
Demmel J W and Kahan W (1990) Accurate singular values of bidiagonal matrices SIAM J. Sci. Statist. Comput. 11 873–912
Fernando K V and Parlett B N (1994) Accurate singular values and differential qd algorithms Numer. Math. 67 191–229
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)
-
Indicates whether
is an upper or lower bidiagonal matrix.
- is an upper bidiagonal matrix.
- is a lower bidiagonal matrix.
Constraint:
or .
- 2:
– double array
-
The dimension of the array
d
must be at least
The diagonal elements of the bidiagonal matrix .
- 3:
– double array
-
The dimension of the array
e
must be at least
The off-diagonal elements of the bidiagonal matrix .
- 4:
– double array
-
The first dimension,
, of the array
vt must satisfy
- if , ;
- otherwise .
The second dimension of the array
vt must be at least
.
If
,
vt must contain an
by
matrix. If the right singular vectors of
are required,
and
vt must contain the unit matrix; if the right singular vectors of
are required,
vt must contain the orthogonal matrix
returned by
nag_lapack_dorgbr (f08kf) with
.
- 5:
– double array
-
The first dimension of the array
u must be at least
.
The second dimension of the array
u must be at least
.
If
,
u must contain an
by
matrix. If the left singular vectors of
are required,
and
u must contain the unit matrix; if the left singular vectors of
are required,
u must contain the orthogonal matrix
returned by
nag_lapack_dorgbr (f08kf) with
.
- 6:
– double array
-
The first dimension,
, of the array
c must satisfy
- if , ;
- otherwise .
The second dimension of the array
c must be at least
.
The by matrix if .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the dimension of the arrays
d,
u.
, the order of the matrix .
Constraint:
.
- 2:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
vt.
, the number of columns of the matrix of right singular vectors. Set if no right singular vectors are required.
Constraint:
.
- 3:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
u.
, the number of rows of the matrix of left singular vectors. Set if no left singular vectors are required.
Constraint:
.
- 4:
– int64int32nag_int scalar
-
Default:
the second dimension of the array
c.
, the number of columns of the matrix . Set if no matrix is supplied.
Constraint:
.
Output Parameters
- 1:
– double array
-
The dimension of the array
d will be
The singular values in decreasing order of magnitude, unless
(in which case see
Error Indicators and Warnings).
- 2:
– double array
-
The dimension of the array
e will be
e is overwritten, but if
see
Error Indicators and Warnings.
- 3:
– double array
-
The first dimension,
, of the array
vt will be
- if , ;
- otherwise .
The second dimension of the array
vt will be
.
The
by
matrix
or
of right singular vectors, stored by rows.
If
,
vt is not referenced.
- 4:
– double array
-
The first dimension of the array
u will be
.
The second dimension of the array
u will be
.
The
by
matrix
or
of left singular vectors, stored as columns of the matrix.
If
,
u is not referenced.
- 5:
– double array
-
The first dimension,
, of the array
c will be
- if , ;
- otherwise .
The second dimension of the array
c will be
.
c stores the matrix
. If
,
c is not referenced.
- 6:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
uplo, 2:
n, 3:
ncvt, 4:
nru, 5:
ncc, 6:
d, 7:
e, 8:
vt, 9:
ldvt, 10:
u, 11:
ldu, 12:
c, 13:
ldc, 14:
work, 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.
- W
-
The algorithm failed to converge and
info specifies how many off-diagonals did not converge. In this case,
d and
e contain on exit the diagonal and off-diagonal elements, respectively, of a bidiagonal matrix orthogonally equivalent to
.
Accuracy
Each singular value and singular vector is computed to high relative accuracy. However, the reduction to bidiagonal form (prior to calling the function) may exclude the possibility of obtaining high relative accuracy in the small singular values of the original matrix if its singular values vary widely in magnitude.
If
is an exact singular value of
and
is the corresponding computed value, then
where
is a modestly increasing function of
and
, and
is the
machine precision. If only singular values are computed, they are computed more accurately (i.e., the function
is smaller), than when some singular vectors are also computed.
If
is the corresponding exact left singular vector of
, and
is the corresponding computed left singular vector, then the angle
between them is bounded as follows:
where
is the relative gap between
and the other singular values, defined by
A similar error bound holds for the right singular vectors.
Further Comments
The total number of floating-point operations is roughly proportional to if only the singular values are computed. About additional operations are required to compute the left singular vectors and about to compute the right singular vectors. The operations to compute the singular values must all be performed in scalar mode; the additional operations to compute the singular vectors can be vectorized and on some machines may be performed much faster.
The complex analogue of this function is
nag_lapack_zbdsqr (f08ms).
Example
This example computes the singular value decomposition of the upper bidiagonal matrix
, where
See also the example for
nag_lapack_dorgbr (f08kf), which illustrates the use of the function to compute the singular value decomposition of a general matrix.
Open in the MATLAB editor:
f08me_example
function f08me_example
fprintf('f08me example results\n\n');
n = 4;
d = [3.62; -2.41; 1.92; -1.43];
e = [1.26; -1.53; 1.19];
vt = eye(4);
u = vt;
c = [];
uplo = 'U';
[s, ~, vt, u, c, info] = f08me( ...
uplo, d, e, vt, u, c);
disp('Singular values');
disp(s');
disp('Right singular vectors, by row');
disp(vt);
disp('Left singular vectors, by column');
disp(u);
f08me example results
Singular values
4.0001 3.0006 1.9960 0.9998
Right singular vectors, by row
0.8261 0.5246 0.2024 0.0369
0.4512 -0.4056 -0.7350 -0.3030
0.2823 -0.5644 0.1731 0.7561
0.1852 -0.4916 0.6236 -0.5789
Left singular vectors, by column
0.9129 0.3740 0.1556 0.0512
-0.3935 0.7005 0.5489 0.2307
0.1081 -0.5904 0.6173 0.5086
-0.0132 0.1444 -0.5417 0.8280
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015