--- rpl/lapack/lapack/dlauu2.f 2010/12/21 13:53:34 1.7 +++ rpl/lapack/lapack/dlauu2.f 2011/07/22 07:38:08 1.8 @@ -1,9 +1,9 @@ SUBROUTINE DLAUU2( UPLO, N, A, LDA, INFO ) * -* -- LAPACK auxiliary routine (version 3.2) -- +* -- LAPACK auxiliary 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 @@ -16,7 +16,7 @@ * Purpose * ======= * -* DLAUU2 computes the product U * U' or L' * L, where the triangular +* DLAUU2 computes the product U * U**T or L**T * L, where the triangular * factor U or L is stored in the upper or lower triangular part of * the array A. * @@ -42,9 +42,9 @@ * A (input/output) DOUBLE PRECISION array, dimension (LDA,N) * On entry, the triangular factor U or L. * On exit, if UPLO = 'U', the upper triangle of A is -* overwritten with the upper triangle of the product U * U'; +* overwritten with the upper triangle of the product U * U**T; * if UPLO = 'L', the lower triangle of A is overwritten with -* the lower triangle of the product L' * L. +* the lower triangle of the product L**T * L. * * LDA (input) INTEGER * The leading dimension of the array A. LDA >= max(1,N). @@ -100,7 +100,7 @@ * IF( UPPER ) THEN * -* Compute the product U * U'. +* Compute the product U * U**T. * DO 10 I = 1, N AII = A( I, I ) @@ -115,7 +115,7 @@ * ELSE * -* Compute the product L' * L. +* Compute the product L**T * L. * DO 20 I = 1, N AII = A( I, I )