diff options
author | Vladimir Chalupecky <vladimir.chalupecky@gmail.com> | 2016-09-16 14:55:51 +0900 |
---|---|---|
committer | Vladimir Chalupecky <vladimir.chalupecky@gmail.com> | 2016-09-16 14:55:51 +0900 |
commit | 57e6a9fd62947055caffe672f70fbef6cbf7a705 (patch) | |
tree | 3c69bde0b1a9cf0721994812f2d413cfd7be0a83 /SRC/strevc3.f | |
parent | 822f7afab26ce4fe24cc75e0fa29337156a06c33 (diff) | |
download | lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.tar.gz lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.tar.bz2 lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.zip |
?TREVC?: fix definition of left eigenvectors in docs
Diffstat (limited to 'SRC/strevc3.f')
-rw-r--r-- | SRC/strevc3.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/strevc3.f b/SRC/strevc3.f index e091a447..49ad8c75 100644 --- a/SRC/strevc3.f +++ b/SRC/strevc3.f @@ -45,9 +45,9 @@ *> The right eigenvector x and the left eigenvector y of T corresponding *> to an eigenvalue w are defined by: *> -*> T*x = w*x, (y**T)*T = w*(y**T) +*> T*x = w*x, (y**H)*T = w*(y**H) *> -*> where y**T denotes the transpose of the vector y. +*> where y**H denotes the conjugate transpose of y. *> The eigenvalues are not input to this routine, but are read directly *> from the diagonal blocks of T. *> |