diff options
Diffstat (limited to 'SRC/cpptrf.f')
-rw-r--r-- | SRC/cpptrf.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/cpptrf.f b/SRC/cpptrf.f index bf214eb7..d3080090 100644 --- a/SRC/cpptrf.f +++ b/SRC/cpptrf.f @@ -115,7 +115,7 @@ * IF( UPPER ) THEN * -* Compute the Cholesky factorization A = U'*U. +* Compute the Cholesky factorization A = U**H * U. * JJ = 0 DO 10 J = 1, N @@ -140,7 +140,7 @@ 10 CONTINUE ELSE * -* Compute the Cholesky factorization A = L*L'. +* Compute the Cholesky factorization A = L * L**H. * JJ = 1 DO 20 J = 1, N |