--- rpl/lapack/lapack/dpstf2.f 2010/12/21 13:53:36 1.4 +++ rpl/lapack/lapack/dpstf2.f 2011/07/22 07:38:10 1.5 @@ -21,8 +21,8 @@ * pivoting of a real symmetric positive semidefinite matrix A. * * The factorization has the form -* P' * A * P = U' * U , if UPLO = 'U', -* P' * A * P = L * L', if UPLO = 'L', +* P**T * A * P = U**T * U , if UPLO = 'U', +* P**T * A * P = L * L**T, if UPLO = 'L', * where U is an upper triangular matrix and L is lower triangular, and * P is stored as vector PIV. * @@ -161,7 +161,7 @@ * IF( UPPER ) THEN * -* Compute the Cholesky factorization P' * A * P = U' * U +* Compute the Cholesky factorization P**T * A * P = U**T * U * DO 130 J = 1, N * @@ -224,7 +224,7 @@ * ELSE * -* Compute the Cholesky factorization P' * A * P = L * L' +* Compute the Cholesky factorization P**T * A * P = L * L**T * DO 150 J = 1, N *