NAME

ztbsv - solve one of the systems of equations A*x = b, or A'*x = b, or conjg( A' )*x = b


SYNOPSIS

  SUBROUTINE ZTBSV( UPLO, TRANSA, DIAG, N, NDIAG, A, LDA, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  DOUBLE COMPLEX A(LDA,*), Y(*)
  INTEGER N, NDIAG, LDA, INCY
  SUBROUTINE ZTBSV_64( UPLO, TRANSA, DIAG, N, NDIAG, A, LDA, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  DOUBLE COMPLEX A(LDA,*), Y(*)
  INTEGER*8 N, NDIAG, LDA, INCY

F95 INTERFACE

  SUBROUTINE TBSV( UPLO, [TRANSA], DIAG, [N], NDIAG, A, [LDA], Y, 
 *       [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  COMPLEX(8), DIMENSION(:) :: Y
  COMPLEX(8), DIMENSION(:,:) :: A
  INTEGER :: N, NDIAG, LDA, INCY
  SUBROUTINE TBSV_64( UPLO, [TRANSA], DIAG, [N], NDIAG, A, [LDA], Y, 
 *       [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  COMPLEX(8), DIMENSION(:) :: Y
  COMPLEX(8), DIMENSION(:,:) :: A
  INTEGER(8) :: N, NDIAG, LDA, INCY

C INTERFACE

#include <sunperf.h>

void ztbsv(char uplo, char transa, char diag, int n, int ndiag, doublecomplex *a, int lda, doublecomplex *y, int incy);

void ztbsv_64(char uplo, char transa, char diag, long n, long ndiag, doublecomplex *a, long lda, doublecomplex *y, long incy);


PURPOSE

ztbsv solves one of the systems of equations A*x = b, or A'*x = b, or conjg( A' )*x = b 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 ( ndiag + 1 ) diagonals.

No test for singularity or near-singularity is included in this routine. Such tests must be performed before calling this routine.


ARGUMENTS