--- rpl/lapack/lapack/dgbtrs.f 2010/12/21 13:53:24 1.7 +++ rpl/lapack/lapack/dgbtrs.f 2011/07/22 07:38:04 1.8 @@ -19,7 +19,7 @@ * ======= * * DGBTRS solves a system of linear equations -* A * X = B or A' * X = B +* A * X = B or A**T * X = B * with a general band matrix A using the LU factorization computed * by DGBTRF. * @@ -29,8 +29,8 @@ * TRANS (input) CHARACTER*1 * Specifies the form of the system of equations. * = 'N': A * X = B (No transpose) -* = 'T': A'* X = B (Transpose) -* = 'C': A'* X = B (Conjugate transpose = Transpose) +* = 'T': A**T* X = B (Transpose) +* = 'C': A**T* X = B (Conjugate transpose = Transpose) * * N (input) INTEGER * The order of the matrix A. N >= 0. @@ -157,17 +157,17 @@ * ELSE * -* Solve A'*X = B. +* Solve A**T*X = B. * DO 30 I = 1, NRHS * -* Solve U'*X = B, overwriting B with X. +* Solve U**T*X = B, overwriting B with X. * CALL DTBSV( 'Upper', 'Transpose', 'Non-unit', N, KL+KU, AB, $ LDAB, B( 1, I ), 1 ) 30 CONTINUE * -* Solve L'*X = B, overwriting B with X. +* Solve L**T*X = B, overwriting B with X. * IF( LNOTI ) THEN DO 40 J = N - 1, 1, -1