aboutsummaryrefslogtreecommitdiff
path: root/SRC/dlaln2.f
diff options
context:
space:
mode:
authorjulie <julielangou@users.noreply.github.com>2011-04-07 13:53:54 +0000
committerjulie <julielangou@users.noreply.github.com>2011-04-07 13:53:54 +0000
commit16973f0c15a4327f8a78b9652f178246895778c1 (patch)
tree1d022faeffac8e1524f4f73517483f4cd828038d /SRC/dlaln2.f
parent8b5dd5433b205f27821b10d5389f55bcd4a1e87a (diff)
Second and hopefully last pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024 Please take a look and let me know if you find some old notation of transpose. I am going to close bug0024. Julie
Diffstat (limited to 'SRC/dlaln2.f')
-rw-r--r--SRC/dlaln2.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/SRC/dlaln2.f b/SRC/dlaln2.f
index 4e38e4d0..59ea7d42 100644
--- a/SRC/dlaln2.f
+++ b/SRC/dlaln2.f
@@ -19,8 +19,8 @@
* =======
*
* DLALN2 solves a system of the form (ca A - w D ) X = s B
-* or (ca A' - w D) X = s B with possible scaling ("s") and
-* perturbation of A. (A' means A-transpose.)
+* or (ca A**T - w D) X = s B with possible scaling ("s") and
+* perturbation of A. (A**T means A-transpose.)
*
* A is an NA x NA real matrix, ca is a real scalar, D is an NA x NA
* real diagonal matrix, w is a real or complex value, and X and B are
@@ -257,7 +257,7 @@
*
* 2x2 System
*
-* Compute the real part of C = ca A - w D (or ca A' - w D )
+* Compute the real part of C = ca A - w D (or ca A**T - w D )
*
CR( 1, 1 ) = CA*A( 1, 1 ) - WR*D1
CR( 2, 2 ) = CA*A( 2, 2 ) - WR*D2