summaryrefslogtreecommitdiff
path: root/SRC/cungr2.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/cungr2.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/cungr2.f')
-rw-r--r--SRC/cungr2.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/cungr2.f b/SRC/cungr2.f
index 4e75e51d..3f104be3 100644
--- a/SRC/cungr2.f
+++ b/SRC/cungr2.f
@@ -19,7 +19,7 @@
* which is defined as the last m rows of a product of k elementary
* reflectors of order n
*
-* Q = H(1)' H(2)' . . . H(k)'
+* Q = H(1)**H H(2)**H . . . H(k)**H
*
* as returned by CGERQF.
*
@@ -112,7 +112,7 @@
DO 40 I = 1, K
II = M - K + I
*
-* Apply H(i)' to A(1:m-k+i,1:n-k+i) from the right
+* Apply H(i)**H to A(1:m-k+i,1:n-k+i) from the right
*
CALL CLACGV( N-M+II-1, A( II, 1 ), LDA )
A( II, N-M+II ) = ONE