diff options
Diffstat (limited to 'SRC/chpgv.f')
-rw-r--r-- | SRC/chpgv.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/chpgv.f b/SRC/chpgv.f index 8973bbf5..727768a3 100644 --- a/SRC/chpgv.f +++ b/SRC/chpgv.f @@ -160,7 +160,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' @@ -176,7 +176,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' |