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/dpttrs.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/dpttrs.f')
-rw-r--r-- | SRC/dpttrs.f | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/SRC/dpttrs.f b/SRC/dpttrs.f index b12a905c..d0ea407e 100644 --- a/SRC/dpttrs.f +++ b/SRC/dpttrs.f @@ -17,7 +17,7 @@ * * DPTTRS solves a tridiagonal system of the form * A * X = B -* using the L*D*L' factorization of A computed by DPTTRF. D is a +* using the L*D*L**T factorization of A computed by DPTTRF. D is a * diagonal matrix specified in the vector D, L is a unit bidiagonal * matrix whose subdiagonal is specified in the vector E, and X and B * are N by NRHS matrices. @@ -34,13 +34,13 @@ * * D (input) DOUBLE PRECISION array, dimension (N) * The n diagonal elements of the diagonal matrix D from the -* L*D*L' factorization of A. +* L*D*L**T factorization of A. * * E (input) DOUBLE PRECISION array, dimension (N-1) * The (n-1) subdiagonal elements of the unit bidiagonal factor -* L from the L*D*L' factorization of A. E can also be regarded +* L from the L*D*L**T factorization of A. E can also be regarded * as the superdiagonal of the unit bidiagonal factor U from the -* factorization A = U'*D*U. +* factorization A = U**T*D*U. * * B (input/output) DOUBLE PRECISION array, dimension (LDB,NRHS) * On entry, the right hand side vectors B for the system of |