aboutsummaryrefslogtreecommitdiff
path: root/SRC/sorml2.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/sorml2.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/sorml2.f')
-rw-r--r--SRC/sorml2.f12
1 files changed, 6 insertions, 6 deletions
diff --git a/SRC/sorml2.f b/SRC/sorml2.f
index 78f5d762..45015055 100644
--- a/SRC/sorml2.f
+++ b/SRC/sorml2.f
@@ -21,11 +21,11 @@
*
* Q * C if SIDE = 'L' and TRANS = 'N', or
*
-* Q'* C if SIDE = 'L' and TRANS = 'T', or
+* Q**T* C if SIDE = 'L' and TRANS = 'T', or
*
* C * Q if SIDE = 'R' and TRANS = 'N', or
*
-* C * Q' if SIDE = 'R' and TRANS = 'T',
+* C * Q**T if SIDE = 'R' and TRANS = 'T',
*
* where Q is a real orthogonal matrix defined as the product of k
* elementary reflectors
@@ -39,12 +39,12 @@
* =========
*
* SIDE (input) CHARACTER*1
-* = 'L': apply Q or Q' from the Left
-* = 'R': apply Q or Q' from the Right
+* = 'L': apply Q or Q**T from the Left
+* = 'R': apply Q or Q**T from the Right
*
* TRANS (input) CHARACTER*1
* = 'N': apply Q (No transpose)
-* = 'T': apply Q' (Transpose)
+* = 'T': apply Q**T (Transpose)
*
* M (input) INTEGER
* The number of rows of the matrix C. M >= 0.
@@ -75,7 +75,7 @@
*
* C (input/output) REAL array, dimension (LDC,N)
* On entry, the m by n matrix C.
-* On exit, C is overwritten by Q*C or Q'*C or C*Q' or C*Q.
+* On exit, C is overwritten by Q*C or Q**T*C or C*Q**T or C*Q.
*
* LDC (input) INTEGER
* The leading dimension of the array C. LDC >= max(1,M).