nag_zgghrd (f08wsc) is usually the third step in the solution of the complex generalized eigenvalue problem
The (optional) first step balances the two matrices using
nag_zggbal (f08wvc). In the second step, matrix
is reduced to upper triangular form using the
factorization function
nag_zgeqrf (f08asc) and this unitary transformation
is applied to matrix
by calling
nag_zunmqr (f08auc).
nag_zgghrd (f08wsc) reduces a pair of complex matrices
, where
is triangular, to the generalized upper Hessenberg form using unitary transformations. This two-sided transformation is of the form
where
is an upper Hessenberg matrix,
is an upper triangular matrix and
and
are unitary matrices determined as products of Givens rotations. They may either be formed explicitly, or they may be postmultiplied into input matrices
and
, so that
Moler C B and Stewart G W (1973) An algorithm for generalized matrix eigenproblems SIAM J. Numer. Anal. 10 241–256
- NE_ALLOC_FAIL
Dynamic memory allocation failed.
- NE_BAD_PARAM
On entry, argument had an illegal value.
- NE_ENUM_INT_2
On entry, , and .
Constraint: if or , ;
if , .
On entry, , and .
Constraint: if or , ;
if , .
- NE_INT
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
- NE_INT_2
On entry, and .
Constraint: .
On entry, and .
Constraint: .
- NE_INT_3
On entry, , and .
Constraint: if , ;
if , and .
- NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact
NAG for assistance.
The reduction to the generalized Hessenberg form is implemented using unitary transformations which are backward stable.
This function is usually followed by
nag_zhgeqz (f08xsc) which implements the
algorithm for computing generalized eigenvalues of a reduced pair of matrices.
The real analogue of this function is
nag_dgghrd (f08wec).