Function strrfs_
Provides forward and backward error bounds for the solution of a triangular system of linear equations A X=B, A**T X=B or A**H X=B.
extern(C) void strrfs_
(
char* uplo,
char* trans,
char* diag,
int* n,
int* nrhs,
float* a,
int* lda,
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
);