Function spbtrs_

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

extern(C) void spbtrs_ (
  char* uplo,
  int* n,
  int* kd,
  int* nrhs,
  float* ab,
  int* ldab,
  float* b,
  int* ldb,
  int* info,
  int uplo_len
);