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/zla_porcond_x.f | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'SRC/zla_porcond_x.f') diff --git a/SRC/zla_porcond_x.f b/SRC/zla_porcond_x.f index 9e0c0403..7ef63389 100644 --- a/SRC/zla_porcond_x.f +++ b/SRC/zla_porcond_x.f @@ -46,7 +46,7 @@ * * AF (input) COMPLEX*16 array, dimension (LDAF,N) * The triangular factor U or L from the Cholesky factorization -* A = U**T*U or A = L*L**T, as computed by ZPOTRF. +* A = U**H*U or A = L*L**H, as computed by ZPOTRF. * * LDAF (input) INTEGER * The leading dimension of the array AF. LDAF >= max(1,N). @@ -175,7 +175,7 @@ END DO ELSE * -* Multiply by inv(X'). +* Multiply by inv(X**H). * DO I = 1, N WORK( I ) = WORK( I ) / X( I ) -- cgit v1.2.3