Function stbrfs_
Provides forward and backward error bounds for the solution of a triangular banded system of linear equations AX=B, A**T X=B or A**H X=B.
extern(C) void stbrfs_
(
char* uplo,
char* trans,
char* diag,
int* n,
int* kd,
int* nrhs,
float* ab,
int* ldab,
float* b,
int* ldb,
float* x,
int* ldx,
float* ferr,
float* berr,
float* work,
int* iwork,
int* info,
int uplo_len,
int trans_len,
int diag_len
);