f08wef reduces a pair of real matrices
, where
is upper triangular, to the generalized upper Hessenberg form using orthogonal transformations.
f08wef is marked as
deprecated by LAPACK; the replacement routine is
f08wff which makes better use of Level 3 BLAS.
f08wef is the third step in the solution of the real generalized eigenvalue problem
The (optional) first step balances the two matrices using
f08whf. In the second step, matrix
is reduced to upper triangular form using the
factorization routine
f08aef and this orthogonal transformation
is applied to matrix
by calling
f08agf.
f08wef reduces a pair of real matrices
, where
is upper triangular, to the generalized upper Hessenberg form using orthogonal transformations. This two-sided transformation is of the form
where
is an upper Hessenberg matrix,
is an upper triangular matrix and
and
are orthogonal 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
The reduction to the generalized Hessenberg form is implemented using orthogonal transformations which are backward stable.
Background information to multithreading can be found in the
Multithreading documentation.
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.
This routine is usually followed by
f08xef which implements the
algorithm for computing generalized eigenvalues of a reduced pair of matrices.
The complex analogue of this routine is
f08wsf.