aboutsummaryrefslogtreecommitdiff
path: root/SRC/zppsv.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/zppsv.f
parent53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff)
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/zppsv.f')
-rw-r--r--SRC/zppsv.f4
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/zppsv.f b/SRC/zppsv.f
index d4d3dfb7..27ccc9d0 100644
--- a/SRC/zppsv.f
+++ b/SRC/zppsv.f
@@ -22,7 +22,7 @@
* packed format and X and B are N-by-NRHS matrices.
*
* The Cholesky decomposition is used to factor A as
-* A = U**H* U, if UPLO = 'U', or
+* A = U**H * U, if UPLO = 'U', or
* A = L * L**H, if UPLO = 'L',
* where U is an upper triangular matrix and L is a lower triangular
* matrix. The factored form of A is then used to solve the system of
@@ -117,7 +117,7 @@
RETURN
END IF
*
-* Compute the Cholesky factorization A = U'*U or A = L*L'.
+* Compute the Cholesky factorization A = U**H *U or A = L*L**H.
*
CALL ZPPTRF( UPLO, N, AP, INFO )
IF( INFO.EQ.0 ) THEN