Function sppsvx_
Solves a symmetric positive definite system of linear equations AX=B, where A is held in packed storage, and provides an estimate of the condition number and error bounds on the solution.
extern(C) void sppsvx_
(
char* fact,
char* uplo,
int* n,
int* nrhs,
float* ap,
float* afp,
char* equed,
float* s,
float* b,
int* ldb,
float* x,
int* ldx,
float* rcond,
float* ferr,
float* berr,
float* work,
int* iwork,
int* info,
int fact_len,
int uplo_len,
int equed_len
);