summaryrefslogtreecommitdiff
path: root/SRC/sormr2.f
diff options
context:
space:
mode:
Diffstat (limited to 'SRC/sormr2.f')
-rw-r--r--SRC/sormr2.f10
1 files changed, 5 insertions, 5 deletions
diff --git a/SRC/sormr2.f b/SRC/sormr2.f
index 966f76ab..05e32932 100644
--- a/SRC/sormr2.f
+++ b/SRC/sormr2.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,8 +39,8 @@
* =========
*
* 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)
@@ -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).