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 | |
parent | 822f7afab26ce4fe24cc75e0fa29337156a06c33 (diff) | |
download | lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.tar.gz lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.tar.bz2 lapack-57e6a9fd62947055caffe672f70fbef6cbf7a705.zip |
?TREVC?: fix definition of left eigenvectors in docs
-rw-r--r-- | SRC/dtrevc.f | 4 | ||||
-rw-r--r-- | SRC/dtrevc3.f | 4 | ||||
-rw-r--r-- | SRC/strevc.f | 4 | ||||
-rw-r--r-- | SRC/strevc3.f | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/SRC/dtrevc.f b/SRC/dtrevc.f index 4a8e45f0..e00a5c0c 100644 --- a/SRC/dtrevc.f +++ b/SRC/dtrevc.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 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. *> diff --git a/SRC/dtrevc3.f b/SRC/dtrevc3.f index 4e1e951f..a288218d 100644 --- a/SRC/dtrevc3.f +++ b/SRC/dtrevc3.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. *> diff --git a/SRC/strevc.f b/SRC/strevc.f index 7abc2910..ead42628 100644 --- a/SRC/strevc.f +++ b/SRC/strevc.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 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. *> 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. *> |