diff options
Diffstat (limited to 'SRC/dspgv.f')
-rw-r--r-- | SRC/dspgv.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/dspgv.f b/SRC/dspgv.f index 918d7efa..93692752 100644 --- a/SRC/dspgv.f +++ b/SRC/dspgv.f @@ -159,7 +159,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)**T*y or inv(U)*y * IF( UPPER ) THEN TRANS = 'N' @@ -175,7 +175,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**T*y * IF( UPPER ) THEN TRANS = 'T' |