zhisl


NAME

zhisl - (obsolete) solve the linear system Ax = b for a Hermitian matrix A, which has been UDU-factored by CHICO or CHIFA, and vectors b and x.


SYNOPSIS

  SUBROUTINE ZHISL( A, LDA, N, IPIVOT, B)
  DOUBLE COMPLEX A(LDA,*), B(*)
  INTEGER LDA, N
  INTEGER IPIVOT(*)
 
  SUBROUTINE ZHISL_64( A, LDA, N, IPIVOT, B)
  DOUBLE COMPLEX A(LDA,*), B(*)
  INTEGER*8 LDA, N
  INTEGER*8 IPIVOT(*)
 

C INTERFACE

#include <sunperf.h>

void zhisl(doublecomplex *a, int lda, int n, int *ipivot, doublecomplex *b);

void zhisl_64(doublecomplex *a, long lda, long n, long *ipivot, doublecomplex *b);


ARGUMENTS

* A (input)
UDU factorization of the matrix A, as computed by CHICO or CHIFA.

* LDA (input)
Leading dimension of the array A as specified in a dimension or type statement. LDA >= max(1,N).

* N (input)
Order of the matrix A. N >= 0.

* IPIVOT (input)
Pivot vector as computed by CHICO or CHIFA.

* B (input/output)
On entry, the right-hand side vector b. On exit, the solution vector x.