PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_lapack_zgeesx (f08pp)
Purpose
nag_lapack_zgeesx (f08pp) computes the eigenvalues, the Schur form , and, optionally, the matrix of Schur vectors for an by complex nonsymmetric matrix .
Syntax
[
a,
sdim,
w,
vs,
rconde,
rcondv,
info] = f08pp(
jobvs,
sort,
select,
sense,
a, 'n',
n)
[
a,
sdim,
w,
vs,
rconde,
rcondv,
info] = nag_lapack_zgeesx(
jobvs,
sort,
select,
sense,
a, 'n',
n)
Description
The Schur factorization of
is given by
where
, the matrix of Schur vectors, is unitary and
is the Schur form. A complex matrix is in Schur form if it is upper triangular.
Optionally,
nag_lapack_zgeesx (f08pp) also orders the eigenvalues on the diagonal of the Schur form so that selected eigenvalues are at the top left; computes a reciprocal condition number for the average of the selected eigenvalues (
rconde); and computes a reciprocal condition number for the right invariant subspace corresponding to the selected eigenvalues (
rcondv). The leading columns of
form an orthonormal basis for this invariant subspace.
For further explanation of the reciprocal condition numbers
rconde and
rcondv, see Section 4.8 of
Anderson et al. (1999) (where these quantities are called
and
respectively).
References
Anderson E, Bai Z, Bischof C, Blackford S, Demmel J, Dongarra J J, Du Croz J J, Greenbaum A, Hammarling S, McKenney A and Sorensen D (1999)
LAPACK Users' Guide (3rd Edition) SIAM, Philadelphia
http://www.netlib.org/lapack/lug
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Parameters
Compulsory Input Parameters
- 1:
– string (length ≥ 1)
-
If
, Schur vectors are not computed.
If , Schur vectors are computed.
Constraint:
or .
- 2:
– string (length ≥ 1)
-
Specifies whether or not to order the eigenvalues on the diagonal of the Schur form.
- Eigenvalues are not ordered.
- Eigenvalues are ordered (see select).
Constraint:
or .
- 3:
– function handle or string containing name of m-file
-
If
,
select is used to select eigenvalues to sort to the top left of the Schur form.
If
,
select is not referenced and
nag_lapack_zgeesx (f08pp) may be called with the string
'f08pnz'.
An eigenvalue is selected if is true.
[result] = select(w)
Input Parameters
- 1:
– complex scalar
-
The real and imaginary parts of the eigenvalue.
Output Parameters
- 1:
– logical scalar
-
for selected eigenvalues.
- 4:
– string (length ≥ 1)
-
Determines which reciprocal condition numbers are computed.
- None are computed.
- Computed for average of selected eigenvalues only.
- Computed for selected right invariant subspace only.
- Computed for both.
If , or , .
Constraint:
, , or .
- 5:
– 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 and the second dimension of the array
a. (An error is raised if these dimensions are not equal.)
, 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 its Schur form
.
- 2:
– int64int32nag_int scalar
-
If
,
.
If
,
number of eigenvalues for which
select is
true.
- 3:
– complex array
-
The dimension of the array
w will be
Contains the computed eigenvalues, in the same order that they appear on the diagonal of the output Schur form .
- 4:
– complex array
-
The first dimension,
, of the array
vs will be
- if , ;
- otherwise .
The second dimension of the array
vs will be
if
and
otherwise.
If
,
vs contains the unitary matrix
of Schur vectors.
If
,
vs is not referenced.
- 5:
– double scalar
-
If
or
, contains the reciprocal condition number for the average of the selected eigenvalues.
If
or
,
rconde is not referenced.
- 6:
– double scalar
-
If
or
,
rcondv contains the reciprocal condition number for the selected right invariant subspace.
If
or
,
rcondv is not referenced.
- 7:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
Error Indicators and Warnings
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
If , parameter had an illegal value on entry. The parameters are numbered as follows:
1:
jobvs, 2:
sort, 3:
select, 4:
sense, 5:
n, 6:
a, 7:
lda, 8:
sdim, 9:
w, 10:
vs, 11:
ldvs, 12:
rconde, 13:
rcondv, 14:
work, 15:
lwork, 16:
rwork, 17:
bwork, 18:
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.
-
-
If and , the algorithm failed to compute all the eigenvalues.
- W
-
The eigenvalues could not be reordered because some eigenvalues were too close to separate (the problem is very ill-conditioned).
- W
-
After reordering, roundoff changed values of some complex eigenvalues so that leading eigenvalues in the Schur form no longer satisfy . This could also be caused by underflow due to scaling.
Accuracy
The computed Schur factorization satisfies
where
and
is the
machine precision. See Section 4.8 of
Anderson et al. (1999) for further details.
Further Comments
The total number of floating-point operations is proportional to .
The real analogue of this function is
nag_lapack_dgeesx (f08pb).
Example
This example finds the Schur factorization of the matrix
such that the eigenvalues of
with positive real part of are the top left diagonal elements of the Schur form,
. Estimates of the condition numbers for the selected eigenvalue cluster and corresponding invariant subspace are also returned.
Note that the block size (NB) of assumed in this example is not realistic for such a small problem, but should be suitable for large problems.
Open in the MATLAB editor:
f08pp_example
function f08pp_example
fprintf('f08pp example results\n\n');
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];
jobvs = 'Vectors (Schur)';
sortp = 'Sort';
select = @(w) (real(w) > 0 );
sense = 'Both reciprocal condition numbers';
[~, sdim, w, V, rconde, rcondv, info] = ...
f08pp( ...
jobvs, sortp, select, sense, a);
fprintf('Number of selected eigenvalues = %2d\n',sdim);
disp('Selected eigenvalues:');
disp(w(1:sdim));
disp('Corresponding eigenvectors:');
disp(V(:,1:sdim)/diag(V(1,1:sdim)));
fprintf('Projection norm for the selected eigenvalues = %7.4f\n',1/rconde);
fprintf('Condition number for the selected eigenvalues = %7.4f\n\n',1/rcondv);
anorm = norm(a);
erbde = x02aj*anorm/rconde;
erbdv = x02aj*anorm/rcondv;
fprintf('%-61s = %9.1e\n', ...
'Approximate asymptotic error bound for selected eigenvalues', erbde);
fprintf('%-61s = %9.1e\n', ...
'Approximate asymptotic error bound for the invariant subspace', ...
erbdv);
f08pp example results
Number of selected eigenvalues = 2
Selected eigenvalues:
7.9982 - 0.9964i
3.0023 - 3.9998i
Corresponding eigenvectors:
1.0000 + 0.0000i 1.0000 + 0.0000i
-1.1841 - 1.8270i -0.8886 + 0.3089i
0.7402 - 1.7252i 2.1298 - 0.0489i
-0.4668 - 0.6356i 0.6784 + 4.4559i
Projection norm for the selected eigenvalues = 1.0072
Condition number for the selected eigenvalues = 0.1081
Approximate asymptotic error bound for selected eigenvalues = 1.0e-15
Approximate asymptotic error bound for the invariant subspace = 1.1e-16
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015