summaryrefslogtreecommitdiff
path: root/SRC/stgsja.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/stgsja.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/stgsja.f')
-rw-r--r--SRC/stgsja.f12
1 files changed, 6 insertions, 6 deletions
diff --git a/SRC/stgsja.f b/SRC/stgsja.f
index d96bad59..af472d86 100644
--- a/SRC/stgsja.f
+++ b/SRC/stgsja.f
@@ -48,10 +48,10 @@
*
* On exit,
*
-* U'*A*Q = D1*( 0 R ), V'*B*Q = D2*( 0 R ),
+* U**T *A*Q = D1*( 0 R ), V**T *B*Q = D2*( 0 R ),
*
-* where U, V and Q are orthogonal matrices, Z' denotes the transpose
-* of Z, R is a nonsingular upper triangular matrix, and D1 and D2 are
+* where U, V and Q are orthogonal matrices.
+* R is a nonsingular upper triangular matrix, and D1 and D2 are
* ``diagonal'' matrices, which are of the following structures:
*
* If M-K-L >= 0,
@@ -247,7 +247,7 @@
* min(L,M-K)-by-L triangular (or trapezoidal) matrix A23 and L-by-L
* matrix B13 to the form:
*
-* U1'*A13*Q1 = C1*R1; V1'*B13*Q1 = S1*R1,
+* U1**T *A13*Q1 = C1*R1; V1**T *B13*Q1 = S1*R1,
*
* where U1, V1 and Q1 are orthogonal matrix, and Z' is the transpose
* of Z. C1 and S1 are diagonal matrices satisfying
@@ -367,13 +367,13 @@
CALL SLAGS2( UPPER, A1, A2, A3, B1, B2, B3, CSU, SNU,
$ CSV, SNV, CSQ, SNQ )
*
-* Update (K+I)-th and (K+J)-th rows of matrix A: U'*A
+* Update (K+I)-th and (K+J)-th rows of matrix A: U**T *A
*
IF( K+J.LE.M )
$ CALL SROT( L, A( K+J, N-L+1 ), LDA, A( K+I, N-L+1 ),
$ LDA, CSU, SNU )
*
-* Update I-th and J-th rows of matrix B: V'*B
+* Update I-th and J-th rows of matrix B: V**T *B
*
CALL SROT( L, B( J, N-L+1 ), LDB, B( I, N-L+1 ), LDB,
$ CSV, SNV )