Diff for /rpl/lapack/blas/dtbsv.f between versions 1.6 and 1.7

version 1.6, 2010/12/21 13:51:25 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

Removed from v.1.6  
changed lines
  Added in v.1.7


CVSweb interface <joel.bertrand@systella.fr>