PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgebrd (f08ke)
Purpose
nag_lapack_dgebrd (f08ke) reduces a real by matrix to bidiagonal form.
Syntax
Description
nag_lapack_dgebrd (f08ke) reduces a real by matrix to bidiagonal form by an orthogonal transformation: , where and are orthogonal matrices of order and respectively.
If
, the reduction is given by:
where
is an
by
upper bidiagonal matrix and
consists of the first
columns of
.
If
, the reduction is given by
where
is an
by
lower bidiagonal matrix and
consists of the first
rows of
.
The orthogonal 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:
– double 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:
– double 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 orthogonal matrix
and elements above the first superdiagonal store details of the orthogonal matrix
.
If , the diagonal and first subdiagonal store the lower bidiagonal matrix , elements below the first subdiagonal store details of the orthogonal matrix and elements above the diagonal store details of the orthogonal 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:
– double array
-
The dimension of the array
tauq will be
Further details of the orthogonal matrix .
- 5:
– double array
-
The dimension of the array
taup will be
Further details of the orthogonal 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 floating-point operations is approximately if or if .
If
, it can be more efficient to first call
nag_lapack_dgeqrf (f08ae) to perform a
factorization of
, and then to call
nag_lapack_dgebrd (f08ke) to reduce the factor
to bidiagonal form. This requires approximately
floating-point operations.
If
, it can be more efficient to first call
nag_lapack_dgelqf (f08ah) to perform an
factorization of
, and then to call
nag_lapack_dgebrd (f08ke) to reduce the factor
to bidiagonal form. This requires approximately
operations.
To form the orthogonal matrices
and/or
nag_lapack_dgebrd (f08ke) may be followed by calls to
nag_lapack_dorgbr (f08kf):
to form the
by
orthogonal matrix
[a, info] = f08kf('Q', k, 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_dgebrd (f08ke);
to form the
by
orthogonal matrix
[a, info] = f08kf('P', k, 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_dgebrd (f08ke).
To apply
or
to a real rectangular matrix
,
nag_lapack_dgebrd (f08ke) may be followed by a call to
nag_lapack_dormbr (f08kg).
The complex analogue of this function is
nag_lapack_zgebrd (f08ks).
Example
This example reduces the matrix
to bidiagonal form, where
Open in the MATLAB editor:
f08ke_example
function f08ke_example
fprintf('f08ke example results\n\n');
m = 6;
n = int64(4);
a = [-0.57 -1.28 -0.39 0.25;
-1.93 1.08 -0.31 -2.14;
2.30 0.24 0.40 -0.35;
-1.93 0.64 -0.66 0.08;
0.15 0.30 0.15 -2.13;
-0.02 1.03 -1.43 0.50];
[~, d, e, tauq, taup, info] = f08ke(a);
fprintf(' Bidiagonal matrix B\n Main diagonal ');
fprintf(' %7.3f',d);
fprintf('\n super-diagonal ');
fprintf(' %7.3f',e);
fprintf('\n');
f08ke example results
Bidiagonal matrix B
Main diagonal 3.618 2.416 -1.921 -1.427
super-diagonal 1.259 1.526 -1.189
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015