summaryrefslogtreecommitdiff
path: root/SRC/ssytrd.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-02 11:08:56 +0000
commitf2953573ede24d7f8c01fdb18de48f65f00a9943 (patch)
tree53172aa9083b9aa1abe2d6c130f7c173d8d8725b /SRC/ssytrd.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
downloadlapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.gz
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.bz2
lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.zip
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/ssytrd.f')
-rw-r--r--SRC/ssytrd.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/ssytrd.f b/SRC/ssytrd.f
index 3399e5e3..b122d9c2 100644
--- a/SRC/ssytrd.f
+++ b/SRC/ssytrd.f
@@ -92,7 +92,7 @@
*
* Each H(i) has the form
*
-* H(i) = I - tau * v * v'
+* H(i) = I - tau * v * v**T
*
* where tau is a real scalar, and v is a real vector with
* v(i+1:n) = 0 and v(i) = 1; v(1:i-1) is stored on exit in
@@ -105,7 +105,7 @@
*
* Each H(i) has the form
*
-* H(i) = I - tau * v * v'
+* H(i) = I - tau * v * v**T
*
* where tau is a real scalar, and v is a real vector with
* v(1:i) = 0 and v(i+1) = 1; v(i+2:n) is stored on exit in A(i+2:n,i),
@@ -235,7 +235,7 @@
$ LDWORK )
*
* Update the unreduced submatrix A(1:i-1,1:i-1), using an
-* update of the form: A := A - V*W' - W*V'
+* update of the form: A := A - V*W' - W*V**T
*
CALL SSYR2K( UPLO, 'No transpose', I-1, NB, -ONE, A( 1, I ),
$ LDA, WORK, LDWORK, ONE, A, LDA )
@@ -266,7 +266,7 @@
$ TAU( I ), WORK, LDWORK )
*
* Update the unreduced submatrix A(i+ib:n,i+ib:n), using
-* an update of the form: A := A - V*W' - W*V'
+* an update of the form: A := A - V*W' - W*V**T
*
CALL SSYR2K( UPLO, 'No transpose', N-I-NB+1, NB, -ONE,
$ A( I+NB, I ), LDA, WORK( NB+1 ), LDWORK, ONE,