NAME

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


SYNOPSIS

  SUBROUTINE CTPMV( UPLO, TRANSA, DIAG, N, A, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  COMPLEX A(*), Y(*)
  INTEGER N, INCY
  SUBROUTINE CTPMV_64( UPLO, TRANSA, DIAG, N, A, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  COMPLEX A(*), Y(*)
  INTEGER*8 N, INCY

F95 INTERFACE

  SUBROUTINE TPMV( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  COMPLEX, DIMENSION(:) :: A, Y
  INTEGER :: N, INCY
  SUBROUTINE TPMV_64( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  COMPLEX, DIMENSION(:) :: A, Y
  INTEGER(8) :: N, INCY

C INTERFACE

#include <sunperf.h>

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

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


PURPOSE

ctpmv 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 matrix, supplied in packed form.


ARGUMENTS