NAME

cposv - compute the solution to a complex system of linear equations A * X = B,


SYNOPSIS

  SUBROUTINE CPOSV( UPLO, N, NRHS, A, LDA, B, LDB, INFO)
  CHARACTER * 1 UPLO
  COMPLEX A(LDA,*), B(LDB,*)
  INTEGER N, NRHS, LDA, LDB, INFO
  SUBROUTINE CPOSV_64( UPLO, N, NRHS, A, LDA, B, LDB, INFO)
  CHARACTER * 1 UPLO
  COMPLEX A(LDA,*), B(LDB,*)
  INTEGER*8 N, NRHS, LDA, LDB, INFO

F95 INTERFACE

  SUBROUTINE POSV( UPLO, [N], [NRHS], A, [LDA], B, [LDB], [INFO])
  CHARACTER(LEN=1) :: UPLO
  COMPLEX, DIMENSION(:,:) :: A, B
  INTEGER :: N, NRHS, LDA, LDB, INFO
  SUBROUTINE POSV_64( UPLO, [N], [NRHS], A, [LDA], B, [LDB], [INFO])
  CHARACTER(LEN=1) :: UPLO
  COMPLEX, DIMENSION(:,:) :: A, B
  INTEGER(8) :: N, NRHS, LDA, LDB, INFO

C INTERFACE

#include <sunperf.h>

void cposv(char uplo, int n, int nrhs, complex *a, int lda, complex *b, int ldb, int *info);

void cposv_64(char uplo, long n, long nrhs, complex *a, long lda, complex *b, long ldb, long *info);


PURPOSE

cposv computes the solution to a complex system of linear equations A * X = B, where A is an N-by-N Hermitian positive definite matrix and X and B are N-by-NRHS matrices.

The Cholesky decomposition is used to factor A as

   A = U**H* U,  if UPLO = 'U', or
   A = L * L**H,  if UPLO = 'L',

where U is an upper triangular matrix and L is a lower triangular matrix. The factored form of A is then used to solve the system of equations A * X = B.


ARGUMENTS