NAME

stpsv - solve one of the systems of equations A*x = b, or A'*x = b


SYNOPSIS

  SUBROUTINE STPSV( UPLO, TRANSA, DIAG, N, A, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  INTEGER N, INCY
  REAL A(*), Y(*)
  SUBROUTINE STPSV_64( UPLO, TRANSA, DIAG, N, A, Y, INCY)
  CHARACTER * 1 UPLO, TRANSA, DIAG
  INTEGER*8 N, INCY
  REAL A(*), Y(*)

F95 INTERFACE

  SUBROUTINE TPSV( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  INTEGER :: N, INCY
  REAL, DIMENSION(:) :: A, Y
  SUBROUTINE TPSV_64( UPLO, [TRANSA], DIAG, [N], A, Y, [INCY])
  CHARACTER(LEN=1) :: UPLO, TRANSA, DIAG
  INTEGER(8) :: N, INCY
  REAL, DIMENSION(:) :: A, Y

C INTERFACE

#include <sunperf.h>

void stpsv(char uplo, char transa, char diag, int n, float *a, float *y, int incy);

void stpsv_64(char uplo, char transa, char diag, long n, float *a, float *y, long incy);


PURPOSE

stpsv solves one of the systems of equations A*x = b, or 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.


ARGUMENTS