Function sgbsvx_

Solves a general banded system of linear equations AX=B, A**T X=B or A**H X=B, and provides an estimate of the condition number and error bounds on the solution.

extern(C) void sgbsvx_ (
  char* fact,
  char* trans,
  int* n,
  int* kl,
  int* ku,
  int* nrhs,
  float* ab,
  int* ldab,
  float* afb,
  int* ldafb,
  int* ipiv,
  char* equed,
  float* r,
  float* c,
  float* b,
  int* ldb,
  float* x,
  int* ldx,
  float* rcond,
  float* ferr,
  float* berr,
  float* work,
  int* iwork,
  int* info,
  int fact_len,
  int trans_len,
  int equed_len
);