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/chptri.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/chptri.f')
-rw-r--r-- | SRC/chptri.f | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SRC/chptri.f b/SRC/chptri.f index d02dca89..e922ac1c 100644 --- a/SRC/chptri.f +++ b/SRC/chptri.f @@ -130,7 +130,7 @@ * IF( UPPER ) THEN * -* Compute inv(A) from the factorization A = U*D*U'. +* Compute inv(A) from the factorization A = U*D*U**H. * * 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. @@ -233,7 +233,7 @@ * ELSE * -* Compute inv(A) from the factorization A = L*D*L'. +* Compute inv(A) from the factorization A = L*D*L**H. * * 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. |