PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zunghr (f08nt)
Purpose
nag_lapack_zunghr (f08nt) generates the complex unitary matrix
which was determined by
nag_lapack_zgehrd (f08ns) when reducing a complex general matrix
to Hessenberg form.
Syntax
Description
nag_lapack_zunghr (f08nt) is intended to be used following a call to
nag_lapack_zgehrd (f08ns), which reduces a complex general matrix
to upper Hessenberg form
by a unitary similarity transformation:
.
nag_lapack_zgehrd (f08ns) represents the matrix
as a product of
elementary reflectors. Here
and
are values determined by
nag_lapack_zgebal (f08nv) when balancing the matrix; if the matrix has not been balanced,
and
.
This function may be used to generate
explicitly as a square matrix.
has the structure:
where
occupies rows and columns
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
-
These
must be the same arguments
ilo and
ihi, respectively, as supplied to
nag_lapack_zgehrd (f08ns).
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
.
Details of the vectors which define the elementary reflectors, as returned by
nag_lapack_zgehrd (f08ns).
- 4:
– complex array
-
The dimension of the array
tau
must be at least
Further details of the elementary reflectors, as returned by
nag_lapack_zgehrd (f08ns).
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
.
The by unitary matrix .
- 2:
– 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 matrix
differs from an exactly unitary matrix by a matrix
such that
where
is the
machine precision.
Further Comments
The total number of real floating-point operations is approximately , where .
The real analogue of this function is
nag_lapack_dorghr (f08nf).
Example
This example computes the Schur factorization of the matrix
, where
Here
is general and must first be reduced to Hessenberg form by
nag_lapack_zgehrd (f08ns). The program then calls
nag_lapack_zunghr (f08nt) to form
, and passes this matrix to
nag_lapack_zhseqr (f08ps) which computes the Schur factorization of
.
Open in the MATLAB editor:
f08nt_example
function f08nt_example
fprintf('f08nt 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);
[Q, info] = f08nt(ilo, ihi, H, tau);
job = 'Schur form';
compz = 'Vectors';
[~, w, Z, info] = f08ps( ...
job, compz, ilo, ihi, H, Q);
disp('Eigenvalues of A');
disp(w);
f08nt example results
Eigenvalues of A
-6.0004 - 6.9998i
-5.0000 + 2.0060i
7.9982 - 0.9964i
3.0023 - 3.9998i
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015