--- rpl/lapack/lapack/zggevx.f 2011/11/21 22:19:46 1.9 +++ rpl/lapack/lapack/zggevx.f 2023/08/07 08:39:21 1.18 @@ -2,18 +2,18 @@ * * =========== DOCUMENTATION =========== * -* Online html documentation available at -* http://www.netlib.org/lapack/explore-html/ +* Online html documentation available at +* http://www.netlib.org/lapack/explore-html/ * *> \htmlonly -*> Download ZGGEVX + dependencies -*> -*> [TGZ] -*> -*> [ZIP] -*> +*> Download ZGGEVX + dependencies +*> +*> [TGZ] +*> +*> [ZIP] +*> *> [TXT] -*> \endhtmlonly +*> \endhtmlonly * * Definition: * =========== @@ -22,7 +22,7 @@ * ALPHA, BETA, VL, LDVL, VR, LDVR, ILO, IHI, * LSCALE, RSCALE, ABNRM, BBNRM, RCONDE, RCONDV, * WORK, LWORK, RWORK, IWORK, BWORK, INFO ) -* +* * .. Scalar Arguments .. * CHARACTER BALANC, JOBVL, JOBVR, SENSE * INTEGER IHI, ILO, INFO, LDA, LDB, LDVL, LDVR, LWORK, N @@ -37,7 +37,7 @@ * $ BETA( * ), VL( LDVL, * ), VR( LDVR, * ), * $ WORK( * ) * .. -* +* * *> \par Purpose: * ============= @@ -296,7 +296,7 @@ *> *> \param[out] RWORK *> \verbatim -*> RWORK is REAL array, dimension (lrwork) +*> RWORK is DOUBLE PRECISION array, dimension (lrwork) *> lrwork must be at least max(1,6*N) if BALANC = 'S' or 'B', *> and at least max(1,2*N) otherwise. *> Real workspace. @@ -330,12 +330,10 @@ * Authors: * ======== * -*> \author Univ. of Tennessee -*> \author Univ. of California Berkeley -*> \author Univ. of Colorado Denver -*> \author NAG Ltd. -* -*> \date November 2011 +*> \author Univ. of Tennessee +*> \author Univ. of California Berkeley +*> \author Univ. of Colorado Denver +*> \author NAG Ltd. * *> \ingroup complex16GEeigen * @@ -374,10 +372,9 @@ $ LSCALE, RSCALE, ABNRM, BBNRM, RCONDE, RCONDV, $ WORK, LWORK, RWORK, IWORK, BWORK, INFO ) * -* -- LAPACK driver routine (version 3.4.0) -- +* -- LAPACK driver routine -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2011 * * .. Scalar Arguments .. CHARACTER BALANC, JOBVL, JOBVR, SENSE @@ -522,7 +519,7 @@ IF( ILVL ) THEN MAXWRK = MAX( MAXWRK, N + $ N*ILAENV( 1, 'ZUNGQR', ' ', N, 1, N, 0 ) ) - END IF + END IF END IF WORK( 1 ) = MAXWRK * @@ -710,8 +707,8 @@ * IF( .NOT.WANTSN ) THEN * -* compute eigenvectors (DTGEVC) and estimate condition -* numbers (DTGSNA). Note that the definition of the condition +* compute eigenvectors (ZTGEVC) and estimate condition +* numbers (ZTGSNA). Note that the definition of the condition * number is not invariant under transformation (u,v) to * (Q*u, Z*v), where (u,v) are eigenvectors of the generalized * Schur form (S,T), Q and Z are orthogonal matrices. In order @@ -788,15 +785,15 @@ * * Undo scaling if necessary * + 90 CONTINUE +* IF( ILASCL ) $ CALL ZLASCL( 'G', 0, 0, ANRMTO, ANRM, N, 1, ALPHA, N, IERR ) * IF( ILBSCL ) $ CALL ZLASCL( 'G', 0, 0, BNRMTO, BNRM, N, 1, BETA, N, IERR ) * - 90 CONTINUE WORK( 1 ) = MAXWRK -* RETURN * * End of ZGGEVX