ctpsv - solve one of the systems of equations A*x = b, or A'*x = b, or conjg( A' )*x = b
SUBROUTINE CTPSV( UPLO, TRANSA, DIAG, N, A, Y, INCY) CHARACTER * 1 UPLO, TRANSA, DIAG COMPLEX A(*), Y(*) INTEGER N, INCY
SUBROUTINE CTPSV_64( UPLO, TRANSA, DIAG, N, A, Y, INCY) CHARACTER * 1 UPLO, TRANSA, DIAG COMPLEX A(*), Y(*) INTEGER*8 N, INCY
SUBROUTINE TPSV( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY]) CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG COMPLEX, DIMENSION(:) :: A, Y INTEGER :: N, INCY
SUBROUTINE TPSV_64( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY]) CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG COMPLEX, DIMENSION(:) :: A, Y INTEGER(8) :: N, INCY
#include <sunperf.h>
void ctpsv(char uplo, char transa, char diag, int n, complex *a, complex *y, int incy);
void ctpsv_64(char uplo, char transa, char diag, long n, complex *a, complex *y, long incy);
ctpsv 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 matrix, supplied in packed form.
No test for singularity or near-singularity is included in this routine. Such tests must be performed before calling this routine.
UPLO = 'U' or 'u' A is an upper triangular matrix.
UPLO = 'L' or 'l' A is a lower triangular matrix.
Unchanged on exit.
TRANSA = 'N' or 'n' A*x = b.
TRANSA = 'T' or 't' A'*x = b.
TRANSA = 'C' or 'c' conjg( A' )*x = b.
Unchanged on exit.
DIAG = 'U' or 'u' A is assumed to be unit triangular.
DIAG = 'N' or 'n' A is not assumed to be unit triangular.
Unchanged on exit.