The routine may be called by the names f08qvf, nagf_lapackeig_ztrsyl or its LAPACK name ztrsyl.
3Description
f08qvf solves the complex Sylvester matrix equation
where or , and the matrices and are upper triangular; is a scale factor () determined by the routine to avoid overflow in ; is and is while the right-hand side matrix and the solution matrix are both . The matrix is obtained by a straightforward process of back-substitution (see Golub and Van Loan (1996)).
Note that the equation has a unique solution if and only if , where and are the eigenvalues of and respectively and the sign ( or ) is the same as that used in the equation to be solved.
4References
Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
Higham N J (1992) Perturbation theory and backward error for Numerical Analysis Report University of Manchester
5Arguments
1: – Character(1)Input
On entry: specifies the option .
.
.
Constraint:
or .
2: – Character(1)Input
On entry: specifies the option .
.
.
Constraint:
or .
3: – IntegerInput
On entry: indicates the form of the Sylvester equation.
The equation is of the form .
The equation is of the form .
Constraint:
or .
4: – IntegerInput
On entry: , the order of the matrix , and the number of rows in the matrices and .
Constraint:
.
5: – IntegerInput
On entry: , the order of the matrix , and the number of columns in the matrices and .
Constraint:
.
6: – Complex (Kind=nag_wp) arrayInput
Note: the second dimension of the array a
must be at least
.
On entry: the upper triangular matrix .
7: – IntegerInput
On entry: the first dimension of the array a as declared in the (sub)program from which f08qvf is called.
Constraint:
.
8: – Complex (Kind=nag_wp) arrayInput
Note: the second dimension of the array b
must be at least
.
On entry: the upper triangular matrix .
9: – IntegerInput
On entry: the first dimension of the array b as declared in the (sub)program from which f08qvf is called.
Constraint:
.
10: – Complex (Kind=nag_wp) arrayInput/Output
Note: the second dimension of the array c
must be at least
.
On entry: the right-hand side matrix .
On exit: c is overwritten by the solution matrix .
11: – IntegerInput
On entry: the first dimension of the array c as declared in the (sub)program from which f08qvf is called.
Constraint:
.
12: – Real (Kind=nag_wp)Output
On exit: the value of the scale factor .
13: – IntegerOutput
On exit: unless the routine detects an error (see Section 6).
6Error Indicators and Warnings
If , argument had an illegal value. An explanatory message is output, and execution of the program is terminated.
and have common or close eigenvalues, perturbed values of which were used to solve the equation.
7Accuracy
Consider the equation . (To apply the remarks to the equation , simply replace by .)
Let be the computed solution and the residual matrix:
Then the residual is always small:
However, is not necessarily the exact solution of a slightly perturbed equation; in other words, the solution is not backwards stable.
These remarks also apply to the solution of a general Sylvester equation, as described in Section 9.
8Parallelism and Performance
f08qvf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
The total number of real floating-point operations is approximately .
To solve the general complex Sylvester equation
where and are general matrices, and must first be reduced to Schur form
(by calling f08pnf, for example):
where and are upper triangular and and are unitary. The original equation may then be transformed to:
where and . may be computed by matrix multiplication; f08qvf may be used to solve the transformed equation; and the solution to the original equation can be obtained as .