diff options
author | julie <julielangou@users.noreply.github.com> | 2011-04-02 11:08:56 +0000 |
---|---|---|
committer | julie <julielangou@users.noreply.github.com> | 2011-04-02 11:08:56 +0000 |
commit | f2953573ede24d7f8c01fdb18de48f65f00a9943 (patch) | |
tree | 53172aa9083b9aa1abe2d6c130f7c173d8d8725b /SRC/dlauu2.f | |
parent | 53b71f5605f83d116ab6bcf477bfb6d2ca757de1 (diff) | |
download | lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.gz lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.tar.bz2 lapack-f2953573ede24d7f8c01fdb18de48f65f00a9943.zip |
First pass to homgenize notation for transpose (**T) and conjugate transpose (**H)
Corresponds to bug0024
Diffstat (limited to 'SRC/dlauu2.f')
-rw-r--r-- | SRC/dlauu2.f | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/SRC/dlauu2.f b/SRC/dlauu2.f index 77bda092..1e6bdfec 100644 --- a/SRC/dlauu2.f +++ b/SRC/dlauu2.f @@ -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 ) |