summaryrefslogtreecommitdiff
path: root/SRC/dsygvx.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/dsygvx.f')
-rw-r--r--SRC/dsygvx.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/dsygvx.f b/SRC/dsygvx.f
index b0108d96..e70009df 100644
--- a/SRC/dsygvx.f
+++ b/SRC/dsygvx.f
@@ -296,7 +296,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'
@@ -310,7 +310,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'