--- rpl/lapack/lapack/zpstrf.f 2010/12/21 13:53:54 1.4 +++ rpl/lapack/lapack/zpstrf.f 2011/07/22 07:38:19 1.5 @@ -25,8 +25,8 @@ * pivoting of a complex Hermitian 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**H * U , if UPLO = 'U', +* P**T * A * P = L * L**H, if UPLO = 'L', * where U is an upper triangular matrix and L is lower triangular, and * P is stored as vector PIV. * @@ -175,7 +175,7 @@ * IF( UPPER ) THEN * -* Compute the Cholesky factorization P' * A * P = U' * U +* Compute the Cholesky factorization P**T * A * P = U**H * U * DO 160 K = 1, N, NB * @@ -270,7 +270,7 @@ * ELSE * -* Compute the Cholesky factorization P' * A * P = L * L' +* Compute the Cholesky factorization P**T * A * P = L * L**H * DO 210 K = 1, N, NB *