version 1.1, 2010/01/26 15:22:45
|
version 1.7, 2011/07/22 07:38:02
|
Line 12
|
Line 12
|
* |
* |
* DTBSV solves one of the systems of equations |
* DTBSV solves one of the systems of equations |
* |
* |
* A*x = b, or A'*x = b, |
* A*x = b, or A**T*x = b, |
* |
* |
* where b and x are n element vectors and A is an n by n unit, or |
* where b and x are n element vectors and A is an n by n unit, or |
* non-unit, upper or lower triangular band matrix, with ( k + 1 ) |
* non-unit, upper or lower triangular band matrix, with ( k + 1 ) |
Line 40
|
Line 40
|
* |
* |
* TRANS = 'N' or 'n' A*x = b. |
* TRANS = 'N' or 'n' A*x = b. |
* |
* |
* TRANS = 'T' or 't' A'*x = b. |
* TRANS = 'T' or 't' A**T*x = b. |
* |
* |
* TRANS = 'C' or 'c' A'*x = b. |
* TRANS = 'C' or 'c' A**T*x = b. |
* |
* |
* Unchanged on exit. |
* Unchanged on exit. |
* |
* |
Line 271
|
Line 271
|
END IF |
END IF |
ELSE |
ELSE |
* |
* |
* Form x := inv( A')*x. |
* Form x := inv( A**T)*x. |
* |
* |
IF (LSAME(UPLO,'U')) THEN |
IF (LSAME(UPLO,'U')) THEN |
KPLUS1 = K + 1 |
KPLUS1 = K + 1 |