NAME

ctbmv - perform one of the matrix-vector operations x := A*x, or x := A'*x, or x := conjg( A' )*x


SYNOPSIS

  SUBROUTINE CTBMV( UPLO, TRANSA, DIAG, N, NDIAG, A, LDA, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  COMPLEX A(LDA,*), Y(*)
  INTEGER N, NDIAG, LDA, INCY
  SUBROUTINE CTBMV_64( UPLO, TRANSA, DIAG, N, NDIAG, A, LDA, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  COMPLEX A(LDA,*), Y(*)
  INTEGER*8 N, NDIAG, LDA, INCY

F95 INTERFACE

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

C INTERFACE

#include <sunperf.h>

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

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


PURPOSE

ctbmv performs one of the matrix-vector operations x := A*x, or x := A'*x, or x := conjg( A' )*x where x is an n element vector and A is an n by n unit, or non-unit, upper or lower triangular band matrix, with ( ndiag + 1 ) diagonals.


ARGUMENTS