--- rpl/lapack/lapack/zhpgvd.f 2010/12/21 13:53:47 1.7 +++ rpl/lapack/lapack/zhpgvd.f 2011/07/22 07:38:16 1.8 @@ -1,10 +1,10 @@ SUBROUTINE ZHPGVD( ITYPE, JOBZ, UPLO, N, AP, BP, W, Z, LDZ, WORK, $ LWORK, RWORK, LRWORK, IWORK, LIWORK, INFO ) * -* -- LAPACK driver routine (version 3.2) -- +* -- LAPACK driver routine (version 3.3.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2006 +* -- April 2011 -- * * .. Scalar Arguments .. CHARACTER JOBZ, UPLO @@ -91,7 +91,7 @@ * On exit, if INFO = 0, WORK(1) returns the required LWORK. * * LWORK (input) INTEGER -* The dimension of array WORK. +* The dimension of the array WORK. * If N <= 1, LWORK >= 1. * If JOBZ = 'N' and N > 1, LWORK >= N. * If JOBZ = 'V' and N > 1, LWORK >= 2*N. @@ -255,7 +255,7 @@ IF( ITYPE.EQ.1 .OR. ITYPE.EQ.2 ) THEN * * For A*x=(lambda)*B*x and A*B*x=(lambda)*x; -* backtransform eigenvectors: x = inv(L)'*y or inv(U)*y +* backtransform eigenvectors: x = inv(L)**H *y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' @@ -271,7 +271,7 @@ ELSE IF( ITYPE.EQ.3 ) THEN * * For B*A*x=(lambda)*x; -* backtransform eigenvectors: x = L*y or U'*y +* backtransform eigenvectors: x = L*y or U**H *y * IF( UPPER ) THEN TRANS = 'C'