spsv - multiple declarations

Function spsv

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

Function spsv

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

Function spsv

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

Function spsv

Solves a real symmetric indefinite system of linear equations AX=B, where A is held in packed storage.

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