NAG FL Interface
f08mbf (dbdsvdx)
1
Purpose
f08mbf computes all or selected singular values and, optionally, the corresponding left and right singular vectors of a real by (upper or lower) bidiagonal matrix .
2
Specification
Fortran Interface
Subroutine f08mbf ( |
uplo, jobz, range, n, d, e, vl, vu, il, iu, ns, s, z, ldz, work, iwork, info) |
Integer, Intent (In) |
:: |
n, il, iu, ldz |
Integer, Intent (Out) |
:: |
ns, iwork(12*n), info |
Real (Kind=nag_wp), Intent (In) |
:: |
d(n), e(n-1), vl, vu |
Real (Kind=nag_wp), Intent (Inout) |
:: |
z(ldz,*) |
Real (Kind=nag_wp), Intent (Out) |
:: |
s(n), work(14*n) |
Character (1), Intent (In) |
:: |
uplo, jobz, range |
|
C Header Interface
#include <nag.h>
void |
f08mbf_ (const char *uplo, const char *jobz, const char *range, const Integer *n, const double d[], const double e[], const double *vl, const double *vu, const Integer *il, const Integer *iu, Integer *ns, double s[], double z[], const Integer *ldz, double work[], Integer iwork[], Integer *info, const Charlen length_uplo, const Charlen length_jobz, const Charlen length_range) |
|
C++ Header Interface
#include <nag.h> extern "C" {
void |
f08mbf_ (const char *uplo, const char *jobz, const char *range, const Integer &n, const double d[], const double e[], const double &vl, const double &vu, const Integer &il, const Integer &iu, Integer &ns, double s[], double z[], const Integer &ldz, double work[], Integer iwork[], Integer &info, const Charlen length_uplo, const Charlen length_jobz, const Charlen length_range) |
}
|
The routine may be called by the names f08mbf, nagf_lapackeig_dbdsvdx or its LAPACK name dbdsvdx.
3
Description
f08mbf computes the singular value decomposition (SVD) of a real
by
(upper or lower) bidiagonal matrix
as
where
is a diagonal matrix with non-negative diagonal elements (the singular values of
), and
and
are orthogonal matrices. The columns of
and
are the left and right singular vectors of
, respectively.
Given an upper bidiagonal matrix
with diagonal
and superdiagonal
,
f08mbf computes the singular value decomposition of
through the eigenvalues and eigenvectors of the
by
tridiagonal matrix
If is a singular triplet of with , then and , , are eigenpairs of , with , and .
Given a
matrix, you can either
-
(i)compute and change signs so that the singular values (and corresponding vectors) are already in descending order (as in f08kbf) or
-
(ii)compute and reorder the values (and corresponding vectors).
f08mbf implements
(i) by calling
f08jbf (bisection plus inverse iteration, to be replaced with a version of the Multiple Relative Robust Representation algorithm. (See
Williams and Lang (2013).)
Alternative to computing all singular values of , a selected set can be computed. The set is either those singular values lying in a given interval, , or those whose index (counting from largest to smallest in magnitude) lies in a given range . In these cases, the corresponding left and right singular vectors can optionally be computed.
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
Williams P and Lang B (2013) A framework for the Algorithm: theory and implementation SIAM J. Sci. Comput. 35 740–766
5
Arguments
-
1:
– Character(1)
Input
-
On entry: indicates whether
is upper or lower bidiagonal.
- is upper bidiagonal.
- is lower bidiagonal.
Constraint:
or .
-
2:
– Character(1)
Input
-
On entry: indicates whether singular vectors are computed.
- Only singular values are computed.
- Singular values and singular vectors are computed.
Constraint:
or .
-
3:
– Character(1)
Input
-
On entry: indicates which singular values should be returned.
- All singular values will be found.
- All singular values in the half-open interval will be found.
- The ilth through iuth singular values will be found.
Constraint:
, or .
-
4:
– Integer
Input
-
On entry: , the order of the bidiagonal matrix .
Constraint:
.
-
5:
– Real (Kind=nag_wp) array
Input
-
On entry: the diagonal elements of the bidiagonal matrix .
-
6:
– Real (Kind=nag_wp) array
Input
-
On entry: the off-diagonal elements of the bidiagonal matrix .
-
7:
– Real (Kind=nag_wp)
Input
-
On entry: if
, the lower bound of the interval to be searched for singular values.
If
or
,
vl is not referenced.
Constraint:
if , .
-
8:
– Real (Kind=nag_wp)
Input
-
On entry: if
, the upper bound of the interval to be searched for singular values.
If
or
,
vu is not referenced.
Constraint:
if , .
-
9:
– Integer
Input
-
10:
– Integer
Input
-
On entry: if
,
il and
iu specify the indices (in ascending order) of the smallest and largest singular values to be returned, respectively.
If
or
,
il and
iu are not referenced.
Constraints:
- if and , and ;
- if and , .
-
11:
– Integer
Output
-
On exit: the total number of singular values found.
.
If , .
If , .
-
12:
– Real (Kind=nag_wp) array
Output
-
On exit: the first
ns elements contain the selected singular values in ascending order.
-
13:
– Real (Kind=nag_wp) array
Output
-
Note: the second dimension of the array
z
must be at least
if
, and at least
otherwise.
On exit: if
, then if
the first
ns columns of
z contain the singular vectors of the matrix
corresponding to the selected singular values, with
in rows
to
and
in rows
to
, i.e.,
If
, then
z is not referenced.
Note: the user must ensure that at least
columns are supplied in the array
. If
, the exact value of
ns is not known in advance and an upper bound of at least
n must be used.
-
14:
– Integer
Input
-
On entry: the first dimension of the array
z as declared in the (sub)program from which
f08mbf is called.
Constraints:
- if , ;
- otherwise .
-
15:
– Real (Kind=nag_wp) array
Workspace
-
-
16:
– Integer array
Workspace
-
On exit: if
, then
- if , the first ns elements of iwork are zero;
- if , iwork contains the indices of the eigenvectors that failed to converge in f08jbf.
If
,
iwork is not referenced.
-
17:
– Integer
Output
On exit:
unless the routine detects an error (see
Section 6).
6
Error Indicators and Warnings
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
-
The algorithm failed to converge;
eigenvectors of the associated eigenproblem did not converge. Their indices are stored in array
iwork.
7
Accuracy
Each computed singular value of
is accurate to nearly full relative precision, no matter how tiny the singular value. The
th computed singular value,
, satisfies the bound
where
is the
machine precision and
is a modest function of
.
For bounds on the computed singular vectors, see Section 4.9.1 of
Anderson et al. (1999). See also
f08flf.
8
Parallelism and Performance
f08mbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f08mbf 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.
If only singular values are required, the total number of floating-point operations is approximately proportional to
. When singular vectors are required the number of operations is bounded above by approximately the same number of operations as
f08mef, but for large matrices
f08mbf is usually much faster.
There is no complex analogue of f08mbf.
10
Example
This example computes the singular value decomposition of the upper bidiagonal matrix
10.1
Program Text
10.2
Program Data
10.3
Program Results