pbtrs - multiple declarations

Function pbtrs

void pbtrs (
  char uplo,
  int n,
  int kd,
  int nrhs,
  std.complex.Complex!(double)* ab,
  int ldab,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);

Function pbtrs

void pbtrs (
  char uplo,
  int n,
  int kd,
  int nrhs,
  std.complex.Complex!(float)* ab,
  int ldab,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function pbtrs

void pbtrs (
  char uplo,
  int n,
  int kd,
  int nrhs,
  double* ab,
  int ldab,
  double* b,
  int ldb,
  ref int info
);

Function pbtrs

Solves a symmetric positive definite banded system of linear equations AX=B, using the Cholesky factorization computed by SPBTRF.

void pbtrs (
  char uplo,
  int n,
  int kd,
  int nrhs,
  float* ab,
  int ldab,
  float* b,
  int ldb,
  ref int info
);