pprfs - multiple declarations
Function pprfs
Improves the computed solution to a symmetric positive definite system of linear equations AX=B, where A is held in packed storage, and provides forward and backward error bounds for the solution.
void pprfs
(
char uplo,
int n,
int nrhs,
float* ap,
float* afp,
float* b,
int ldb,
float* x,
int ldx,
float* ferr,
float* berr,
float* work,
int* iwork,
ref int info
);
Function pprfs
void pprfs
(
char uplo,
int n,
int nrhs,
double* ap,
double* afp,
double* b,
int ldb,
double* x,
int ldx,
double* ferr,
double* berr,
double* work,
int* iwork,
ref int info
);
Function pprfs
void pprfs
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(float)* ap,
std .complex .Complex!(float)* afp,
std .complex .Complex!(float)* b,
int ldb,
std .complex .Complex!(float)* x,
int ldx,
float* ferr,
float* berr,
std .complex .Complex!(float)* work,
float* rwork,
ref int info
);
Function pprfs
void pprfs
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(double)* ap,
std .complex .Complex!(double)* afp,
std .complex .Complex!(double)* b,
int ldb,
std .complex .Complex!(double)* x,
int ldx,
double* ferr,
double* berr,
std .complex .Complex!(double)* work,
double* rwork,
ref int info
);