pbtrf - multiple declarations

Function pbtrf

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

Function pbtrf

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

Function pbtrf

void pbtrf (
  char uplo,
  int n,
  int kd,
  double* ab,
  int ldab,
  ref int info
);

Function pbtrf

Computes the Cholesky factorization of a symmetric positive definite band matrix.

void pbtrf (
  char uplo,
  int n,
  int kd,
  float* ab,
  int ldab,
  ref int info
);