sptrs - multiple declarations

Function sptrs

void sptrs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(double)* ap,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);

Function sptrs

void sptrs (
  char uplo,
  int n,
  int nrhs,
  std.complex.Complex!(float)* ap,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function sptrs

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

void sptrs (
  char uplo,
  int n,
  int nrhs,
  float* ap,
  int* ipiv,
  float* b,
  int ldb,
  ref int info
);

Function sptrs

void sptrs (
  char uplo,
  int n,
  int nrhs,
  double* ap,
  int* ipiv,
  double* b,
  int ldb,
  ref int info
);