gbrfs - multiple declarations

Function gbrfs

Improves the computed solution to a general banded system of linear equations AX=B, A**T X=B or A**H X=B, and provides forward and backward error bounds for the solution.

void gbrfs (
  char trans,
  int n,
  int kl,
  int ku,
  int nrhs,
  float* ab,
  int ldab,
  float* afb,
  int ldafb,
  int* ipiv,
  float* b,
  int ldb,
  float* x,
  int ldx,
  float* ferr,
  float* berr,
  float* work,
  int* iwork,
  ref int info
);

Function gbrfs

void gbrfs (
  char trans,
  int n,
  int kl,
  int ku,
  int nrhs,
  double* ab,
  int ldab,
  double* afb,
  int ldafb,
  int* ipiv,
  double* b,
  int ldb,
  double* x,
  int ldx,
  double* ferr,
  double* berr,
  double* work,
  int* iwork,
  ref int info
);

Function gbrfs

void gbrfs (
  char trans,
  int n,
  int kl,
  int ku,
  int nrhs,
  std.complex.Complex!(float)* ab,
  int ldab,
  std.complex.Complex!(float)* afb,
  int ldafb,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* x,
  int ldx,
  float* ferr,
  float* berr,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function gbrfs

void gbrfs (
  char trans,
  int n,
  int kl,
  int ku,
  int nrhs,
  std.complex.Complex!(double)* ab,
  int ldab,
  std.complex.Complex!(double)* afb,
  int ldafb,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* x,
  int ldx,
  double* ferr,
  double* berr,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);