diff options
Diffstat (limited to 'SRC/chegvd.f')
-rw-r--r-- | SRC/chegvd.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/chegvd.f b/SRC/chegvd.f index 61ee89a4..7d0362a6 100644 --- a/SRC/chegvd.f +++ b/SRC/chegvd.f @@ -270,7 +270,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' @@ -284,7 +284,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' |