PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgebrd (f08ks)
Purpose
nag_lapack_zgebrd (f08ks) reduces a complex by matrix to bidiagonal form.
Syntax
Description
nag_lapack_zgebrd (f08ks) reduces a complex by matrix to real bidiagonal form by a unitary transformation: , where and are unitary matrices of order and respectively.
If
, the reduction is given by:
where
is a real
by
upper bidiagonal matrix and
consists of the first
columns of
.
If
, the reduction is given by
where
is a real
by
lower bidiagonal matrix and
consists of the first
rows of
.
The unitary matrices
and
are not formed explicitly but are represented as products of elementary reflectors (see the
F08 Chapter Introduction for details). Functions are provided to work with
and
in this representation (see
Further Comments).
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– 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
, the diagonal and first superdiagonal store the upper bidiagonal matrix
, elements below the diagonal store details of the unitary matrix
and elements above the first superdiagonal store details of the unitary matrix
.
If , the diagonal and first subdiagonal store the lower bidiagonal matrix , elements below the first subdiagonal store details of the unitary matrix and elements above the diagonal store details of the unitary matrix .
- 2:
– double array
-
The dimension of the array
d will be
The diagonal elements of the bidiagonal matrix .
- 3:
– double array
-
The dimension of the array
e will be
The off-diagonal elements of the bidiagonal matrix .
- 4:
– complex array
-
The dimension of the array
tauq will be
Further details of the unitary matrix .
- 5:
– complex array
-
The dimension of the array
taup will be
Further details of the unitary matrix .
- 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:
m, 2:
n, 3:
a, 4:
lda, 5:
d, 6:
e, 7:
tauq, 8:
taup, 9:
work, 10:
lwork, 11:
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.
Accuracy
The computed bidiagonal form
satisfies
, where
is a modestly increasing function of
, and
is the
machine precision.
The elements of themselves may be sensitive to small perturbations in or to rounding errors in the computation, but this does not affect the stability of the singular values and vectors.
Further Comments
The total number of real floating-point operations is approximately if or if .
If
, it can be more efficient to first call
nag_lapack_zgeqrf (f08as) to perform a
factorization of
, and then to call
nag_lapack_zgebrd (f08ks) to reduce the factor
to bidiagonal form. This requires approximately
floating-point operations.
If
, it can be more efficient to first call
nag_lapack_zgelqf (f08av) to perform an
factorization of
, and then to call
nag_lapack_zgebrd (f08ks) to reduce the factor
to bidiagonal form. This requires approximately
operations.
To form the unitary matrices
and/or
nag_lapack_zgebrd (f08ks) may be followed by calls to
nag_lapack_zungbr (f08kt):
to form the
by
unitary matrix
[a, info] = f08kt('Q', n, a, tauq);
but note that the second dimension of the array
a must be at least
m, which may be larger than was required by
nag_lapack_zgebrd (f08ks);
to form the
by
unitary matrix
[a, info] = f08kt('P', m, a, taup);
but note that the first dimension of the array
a, specified by the argument
lda, must be at least
n, which may be larger than was required by
nag_lapack_zgebrd (f08ks).
To apply
or
to a complex rectangular matrix
,
nag_lapack_zgebrd (f08ks) may be followed by a call to
nag_lapack_zunmbr (f08ku).
The real analogue of this function is
nag_lapack_dgebrd (f08ke).
Example
This example reduces the matrix
to bidiagonal form, where
Open in the MATLAB editor:
f08ks_example
function f08ks_example
fprintf('f08ks 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];
[B, d, e, tauq, taup, info] = f08ks(a);
fprintf(' Bidiagonal matrix B\n Main diagonal ');
fprintf(' %7.3f',d);
fprintf('\n super-diagonal ');
fprintf(' %7.3f',e);
fprintf('\n');
f08ks example results
Bidiagonal matrix B
Main diagonal -3.087 2.066 1.873 2.002
super-diagonal 2.113 1.263 -1.613
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015