--- rpl/lapack/lapack/dsytri.f 2010/12/21 13:53:39 1.7 +++ rpl/lapack/lapack/dsytri.f 2011/07/22 07:38:12 1.8 @@ -1,9 +1,9 @@ SUBROUTINE DSYTRI( UPLO, N, A, LDA, IPIV, WORK, INFO ) * -* -- LAPACK routine (version 3.2) -- +* -- LAPACK routine (version 3.3.1) -- * -- LAPACK is a software package provided by Univ. of Tennessee, -- * -- Univ. of California Berkeley, Univ. of Colorado Denver and NAG Ltd..-- -* November 2006 +* -- April 2011 -- * * .. Scalar Arguments .. CHARACTER UPLO @@ -127,7 +127,7 @@ * IF( UPPER ) THEN * -* Compute inv(A) from the factorization A = U*D*U'. +* Compute inv(A) from the factorization A = U*D*U**T. * * K is the main loop index, increasing from 1 to N in steps of * 1 or 2, depending on the size of the diagonal blocks. @@ -216,7 +216,7 @@ * ELSE * -* Compute inv(A) from the factorization A = L*D*L'. +* Compute inv(A) from the factorization A = L*D*L**T. * * K is the main loop index, increasing from 1 to N in steps of * 1 or 2, depending on the size of the diagonal blocks.