NAME

cpptri - compute the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPPTRF


SYNOPSIS

  SUBROUTINE CPPTRI( UPLO, N, A, INFO)
  CHARACTER * 1 UPLO
  COMPLEX A(*)
  INTEGER N, INFO
  SUBROUTINE CPPTRI_64( UPLO, N, A, INFO)
  CHARACTER * 1 UPLO
  COMPLEX A(*)
  INTEGER*8 N, INFO

F95 INTERFACE

  SUBROUTINE PPTRI( UPLO, N, A, [INFO])
  CHARACTER(LEN=1) :: UPLO
  COMPLEX, DIMENSION(:) :: A
  INTEGER :: N, INFO
  SUBROUTINE PPTRI_64( UPLO, N, A, [INFO])
  CHARACTER(LEN=1) :: UPLO
  COMPLEX, DIMENSION(:) :: A
  INTEGER(8) :: N, INFO

C INTERFACE

#include <sunperf.h>

void cpptri(char uplo, int n, complex *a, int *info);

void cpptri_64(char uplo, long n, complex *a, long *info);


PURPOSE

cpptri computes the inverse of a complex Hermitian positive definite matrix A using the Cholesky factorization A = U**H*U or A = L*L**H computed by CPPTRF.


ARGUMENTS