Function sgbtrs_
Solves a general banded system of linear equations AX=B, A**T X=B or A**H X=B, using the LU factorization computed by SGBTRF.
extern(C) void sgbtrs_
(
char* trans,
int* n,
int* kl,
int* ku,
int* nrhs,
float* ab,
int* ldab,
int* ipiv,
float* b,
int* ldb,
int* info,
int trans_len
);