PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_dgehrd (f08ne)
Purpose
nag_lapack_dgehrd (f08ne) reduces a real general matrix to Hessenberg form.
Syntax
Description
nag_lapack_dgehrd (f08ne) reduces a real general matrix to upper Hessenberg form by an orthogonal similarity transformation: .
The matrix
is not formed explicitly, but is represented as a product of elementary reflectors (see the
F08 Chapter Introduction for details). Functions are provided to work with
in this representation (see
Further Comments).
The function can take advantage of a previous call to
nag_lapack_dgebal (f08nh), which may produce a matrix with the structure:
where
and
are upper triangular. If so, only the central diagonal block
, in rows and columns
to
, needs to be reduced to Hessenberg form (the blocks
and
will also be affected by the reduction). Therefore the values of
and
determined by
nag_lapack_dgebal (f08nh) can be supplied to the function directly. If
nag_lapack_dgebal (f08nh) has not previously been called however, then
must be set to
and
to
.
References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– int64int32nag_int scalar
- 2:
– int64int32nag_int scalar
-
If
has been output by
nag_lapack_dgebal (f08nh), then
ilo and
ihi must contain the values returned by that function. Otherwise,
ilo must be set to
and
ihi to
n.
Constraints:
- if , ;
- if , and .
- 3:
– 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 general matrix .
Optional Input Parameters
- 1:
– int64int32nag_int scalar
-
Default:
the first dimension of the array
a and the second dimension of the array
a.
, the order 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
.
a stores the upper Hessenberg matrix
and details of the orthogonal matrix
.
- 2:
– double array
-
The dimension of the array
tau will be
Further details of the orthogonal matrix .
- 3:
– 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:
n, 2:
ilo, 3:
ihi, 4:
a, 5:
lda, 6:
tau, 7:
work, 8:
lwork, 9:
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 Hessenberg matrix
is exactly similar to a nearby matrix
, 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 eigenvalues, eigenvectors or Schur factorization.
Further Comments
The total number of floating-point operations is approximately , where ; if and , the number is approximately .
To form the orthogonal matrix
nag_lapack_dgehrd (f08ne) may be followed by a call to
nag_lapack_dorghr (f08nf):
[a, info] = f08nf(ilo, ihi, a, tau);
To apply
to an
by
real matrix
nag_lapack_dgehrd (f08ne) may be followed by a call to
nag_lapack_dormhr (f08ng). For example,
[c, info] = f08ng('Left', 'No Transpose', ilo, ihi, a, tau, c);
forms the matrix product .
The complex analogue of this function is
nag_lapack_zgehrd (f08ns).
Example
This example computes the upper Hessenberg form of the matrix
, where
Open in the MATLAB editor:
f08ne_example
function f08ne_example
fprintf('f08ne example results\n\n');
ilo = int64(1);
ihi = int64(4);
a = [ 0.35, 0.45, -0.14, -0.17;
0.09, 0.07, -0.54, 0.35;
-0.44, -0.33, -0.03, 0.17;
0.25, -0.32, -0.13, 0.11];
[H, tau, info] = f08ne( ...
ilo, ihi, a);
disp('Upper Hessenberg Form H');
disp(H);
f08ne example results
Upper Hessenberg Form H
0.3500 -0.1160 -0.3886 -0.2942
-0.5140 0.1225 0.1004 0.1126
-0.7285 0.6443 -0.1357 -0.0977
0.4139 -0.1665 0.4262 0.1632
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015