aboutsummaryrefslogtreecommitdiff
path: root/SRC/clabrd.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/clabrd.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/clabrd.f')
-rw-r--r--SRC/clabrd.f8
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/clabrd.f b/SRC/clabrd.f
index c96fe003..f731337b 100644
--- a/SRC/clabrd.f
+++ b/SRC/clabrd.f
@@ -20,7 +20,7 @@
*
* CLABRD reduces the first NB rows and columns of a complex general
* m by n matrix A to upper or lower real bidiagonal form by a unitary
-* transformation Q' * A * P, and returns the matrices X and Y which
+* transformation Q**H * A * P, and returns the matrices X and Y which
* are needed to apply the transformation to the unreduced part of A.
*
* If m >= n, A is reduced to upper bidiagonal form; if m < n, to lower
@@ -101,7 +101,7 @@
*
* Each H(i) and G(i) has the form:
*
-* H(i) = I - tauq * v * v' and G(i) = I - taup * u * u'
+* H(i) = I - tauq * v * v**H and G(i) = I - taup * u * u**H
*
* where tauq and taup are complex scalars, and v and u are complex
* vectors.
@@ -115,9 +115,9 @@
* A(i,i+1:n); tauq is stored in TAUQ(i) and taup in TAUP(i).
*
* The elements of the vectors v and u together form the m-by-nb matrix
-* V and the nb-by-n matrix U' which are needed, with X and Y, to apply
+* V and the nb-by-n matrix U**H which are needed, with X and Y, to apply
* the transformation to the unreduced part of the matrix, using a block
-* update of the form: A := A - V*Y' - X*U'.
+* update of the form: A := A - V*Y**H - X*U**H.
*
* The contents of A on exit are illustrated by the following examples
* with nb = 2: