NAG Library Routine Document
f02xuf
(complex_triang_svd)
1
Purpose
f02xuf returns all, or part, of the singular value decomposition of a complex upper triangular matrix.
2
Specification
Fortran Interface
Subroutine f02xuf ( |
n,
a,
lda,
ncolb,
b,
ldb,
wantq,
q,
ldq,
sv,
wantp,
rwork,
cwork,
ifail) |
Integer, Intent (In) | :: |
n,
lda,
ncolb,
ldb,
ldq | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (Inout) | :: |
rwork(*) | Real (Kind=nag_wp), Intent (Out) | :: |
sv(n) | Complex (Kind=nag_wp), Intent (Inout) | :: |
a(lda,*),
b(ldb,*),
q(ldq,*) | Complex (Kind=nag_wp), Intent (Out) | :: |
cwork(max(1,n-1)) | Logical, Intent (In) | :: |
wantq,
wantp |
|
C Header Interface
#include nagmk26.h
void |
f02xuf_ (
const Integer *n,
Complex a[],
const Integer *lda,
const Integer *ncolb,
Complex b[],
const Integer *ldb,
const logical *wantq,
Complex q[],
const Integer *ldq,
double sv[],
const logical *wantp,
double rwork[],
Complex cwork[],
Integer *ifail) |
|
3
Description
The
by
upper triangular matrix
is factorized as
where
and
are
by
unitary matrices and
is an
by
diagonal matrix with real non-negative diagonal elements,
, ordered such that
The columns of
are the left-hand singular vectors of
, the diagonal elements of
are the singular values of
and the columns of
are the right-hand singular vectors of
.
Either or both of
and
may be requested and the matrix
given by
where
is an
by
given matrix, may also be requested.
f02xuf obtains the singular value decomposition by first reducing to bidiagonal form by means of Givens plane rotations and then using the algorithm to obtain the singular value decomposition of the bidiagonal form.
Good background descriptions to the singular value decomposition are given in
Dongarra et al. (1979),
Hammarling (1985) and
Wilkinson (1978).
Note that if
is any unitary diagonal matrix so that
then
is also a singular value decomposition of
.
4
References
Dongarra J J, Moler C B, Bunch J R and Stewart G W (1979) LINPACK Users' Guide SIAM, Philadelphia
Hammarling S (1985) The singular value decomposition in multivariate statistics SIGNUM Newsl. 20(3) 2–25
Wilkinson J H (1978) Singular Value Decomposition – Basic Aspects Numerical Software – Needs and Availability (ed D A H Jacobs) Academic Press
5
Arguments
- 1: – IntegerInput
-
On entry:
, the order of the matrix
.
If , an immediate return is effected.
Constraint:
.
- 2: – Complex (Kind=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
a
must be at least
.
On entry: the leading
by
upper triangular part of the array
a must contain the upper triangular matrix
.
On exit: if
, the
by
part of
a will contain the
by
unitary matrix
, otherwise the
by
upper triangular part of
a is used as internal workspace, but the strictly lower triangular part of
a is not referenced.
- 3: – IntegerInput
-
On entry: the first dimension of the array
a as declared in the (sub)program from which
f02xuf is called.
Constraint:
.
- 4: – IntegerInput
-
On entry:
, the number of columns of the matrix
.
If
, the array
b is not referenced.
Constraint:
.
- 5: – Complex (Kind=nag_wp) arrayInput/Output
-
Note: the second dimension of the array
b
must be at least
.
On entry: if
, the leading
by
part of the array
b must contain the matrix to be transformed.
On exit: is overwritten by the by matrix .
- 6: – IntegerInput
-
On entry: the first dimension of the array
b as declared in the (sub)program from which
f02xuf is called.
Constraints:
- if , ;
- otherwise .
- 7: – LogicalInput
-
On entry: must be .TRUE. if the matrix
is required.
If
then the array
q is not referenced.
- 8: – Complex (Kind=nag_wp) arrayOutput
-
Note: the second dimension of the array
q
must be at least
if
, and at least
otherwise.
On exit: if
, the leading
by
part of the array
q will contain the unitary matrix
. Otherwise the array
q is not referenced.
- 9: – IntegerInput
-
On entry: the first dimension of the array
q as declared in the (sub)program from which
f02xuf is called.
Constraints:
- if , ;
- otherwise .
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: the diagonal elements of the matrix .
- 11: – LogicalInput
-
On entry: must be .TRUE. if the matrix
is required, in which case
is returned in the array
a, otherwise
wantp must be .FALSE..
- 12: – Real (Kind=nag_wp) arrayOutput
-
Note: the dimension of the array
rwork
must be at least
if
and
and
,
if (
and
and
) or (
and
) or (
and
), and at least
otherwise.
On exit:
rwork(
n) contains the total number of iterations taken by the
algorithm.
The rest of the array is used as workspace.
- 13: – Complex (Kind=nag_wp) arrayWorkspace
-
- 14: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, if you are not familiar with this argument, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Errors or warnings detected by the routine:
-
On entry, | , |
or | , |
or | , |
or | and , |
or | and |
-
The algorithm has failed to converge in iterations. In this case may not have been found correctly and the remaining singular values may not be the smallest. The matrix will nevertheless have been factorized as , where is a bidiagonal matrix with as the diagonal elements and as the superdiagonal elements.
This failure is not likely to occur.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
Accuracy
The computed factors
,
and
satisfy the relation
where
is the
machine precision,
is a modest function of
and
denotes the spectral (two) norm. Note that
.
8
Parallelism and Performance
f02xuf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
f02xuf 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.
For given values of
ncolb,
wantq and
wantp, the number of floating-point operations required is approximately proportional to
.
Following the use of this routine the rank of
may be estimated by a call to the INTEGER FUNCTION
f06klf. The statement
irank = f06klf(n,sv,1,tol)
returns the value
in
IRANK, where
is the smallest integer for which
, where
is the tolerance supplied in
tol, so that
IRANK is an estimate of the rank of
and thus also of
. If
tol is supplied as negative then the
machine precision is used in place of
tol.
10
Example
This example finds the singular value decomposition of the
by
upper triangular matrix
together with the vector
for the vector
10.1
Program Text
Program Text (f02xufe.f90)
10.2
Program Data
Program Data (f02xufe.d)
10.3
Program Results
Program Results (f02xufe.r)