aboutsummaryrefslogtreecommitdiff
path: root/SRC/ztgex2.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/ztgex2.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/ztgex2.f')
-rw-r--r--SRC/ztgex2.f6
1 files changed, 3 insertions, 3 deletions
diff --git a/SRC/ztgex2.f b/SRC/ztgex2.f
index a715c1a6..d672e43e 100644
--- a/SRC/ztgex2.f
+++ b/SRC/ztgex2.f
@@ -28,8 +28,8 @@
* Optionally, the matrices Q and Z of generalized Schur vectors are
* updated.
*
-* Q(in) * A(in) * Z(in)' = Q(out) * A(out) * Z(out)'
-* Q(in) * B(in) * Z(in)' = Q(out) * B(out) * Z(out)'
+* Q(in) * A(in) * Z(in)**H = Q(out) * A(out) * Z(out)**H
+* Q(in) * B(in) * Z(in)**H = Q(out) * B(out) * Z(out)**H
*
*
* Arguments
@@ -213,7 +213,7 @@
IF( WANDS ) THEN
*
* Strong stability test:
-* F-norm((A-QL'*S*QR, B-QL'*T*QR)) <= O(EPS*F-norm((A, B)))
+* F-norm((A-QL**H*S*QR, B-QL**H*T*QR)) <= O(EPS*F-norm((A, B)))
*
CALL ZLACPY( 'Full', M, M, S, LDST, WORK, M )
CALL ZLACPY( 'Full', M, M, T, LDST, WORK( M*M+1 ), M )