PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgehrd (f08ns)
Purpose
nag_lapack_zgehrd (f08ns) reduces a complex general matrix to Hessenberg form.
Syntax
Description
nag_lapack_zgehrd (f08ns) reduces a complex general matrix to upper Hessenberg form by a unitary similarity transformation: . has real subdiagonal elements.
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_zgebal (f08nv), 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_zgebal (f08nv) can be supplied to the function directly. If
nag_lapack_zgebal (f08nv) 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_zgebal (f08nv), 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:
– 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 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:
– complex 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 unitary matrix
. The subdiagonal elements of
are real.
- 2:
– complex array
-
The dimension of the array
tau will be
Further details of the unitary 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 real floating-point operations is approximately , where ; if and , the number is approximately .
To form the unitary matrix
nag_lapack_zgehrd (f08ns) may be followed by a call to
nag_lapack_zunghr (f08nt):
[a, info] = f08nt(ilo, ihi, a, tau);
To apply
to an
by
complex matrix
nag_lapack_zgehrd (f08ns) may be followed by a call to
nag_lapack_zunmhr (f08nu). For example,
[c, info] = f08nu('Left', 'No Transpose', ilo, ihi, a, tau, c);
forms the matrix product .
The real analogue of this function is
nag_lapack_dgehrd (f08ne).
Example
This example computes the upper Hessenberg form of the matrix
, where
Open in the MATLAB editor:
f08ns_example
function f08ns_example
fprintf('f08ns example results\n\n');
ilo = int64(1);
ihi = int64(4);
a = [ -3.97 - 5.04i, -4.11 + 3.70i, -0.34 + 1.01i, 1.29 - 0.86i;
0.34 - 1.50i, 1.52 - 0.43i, 1.88 - 5.38i, 3.36 + 0.65i;
3.31 - 3.85i, 2.50 + 3.45i, 0.88 - 1.08i, 0.64 - 1.48i;
-1.10 + 0.82i, 1.81 - 1.59i, 3.25 + 1.33i, 1.57 - 3.44i];
[H, tau, info] = f08ns(ilo, ihi, a);
disp('Upper Hessenberg Form H');
disp(H);
f08ns example results
Upper Hessenberg Form H
-3.9700 - 5.0400i -1.1318 - 2.5693i -4.6027 - 0.1426i -1.4249 + 1.7330i
-5.4797 + 0.0000i 1.8585 - 1.5502i 4.4145 - 0.7638i -0.4805 - 1.1976i
0.6932 - 0.4829i 6.2673 + 0.0000i -0.4504 - 0.0290i -1.3467 + 1.6579i
-0.2113 + 0.0864i 0.1242 - 0.2289i -3.5000 + 0.0000i 2.5619 - 3.3708i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015