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