Function spbsvx_

Solves a symmetric positive definite banded system of linear equations AX=B, and provides an estimate of the condition number and error bounds on the solution.

extern(C) void spbsvx_ (
  char* fact,
  char* uplo,
  int* n,
  int* kd,
  int* nrhs,
  float* ab,
  int* ldab,
  float* afb,
  int* ldafb,
  char* equed,
  float* s,
  float* b,
  int* ldb,
  float* x,
  int* ldx,
  float* rcond,
  float* ferr,
  float* berr,
  float* work,
  int* iwork,
  int* info,
  int fact_len,
  int uplo_len,
  int equed_len
);