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