From 16973f0c15a4327f8a78b9652f178246895778c1 Mon Sep 17 00:00:00 2001 From: julie Date: Thu, 7 Apr 2011 13:53:54 +0000 Subject: 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 --- SRC/dlaln2.f | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'SRC/dlaln2.f') 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 -- cgit v1.2.3