Function chptrs_

Solves a complex Hermitian indefinite system of linear equations AX=B, where A is held in packed storage, using the factorization computed by CHPTRF.

extern(C) void chptrs_ (
  char* uplo,
  int* n,
  int* nrhs,
  std.complex.Complex!(float)* ap,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int* ldb,
  int* info,
  int uplo_len
);