pbsvx - multiple declarations
Function pbsvx
Solves a symmetric positive definite banded system of linear equations AX=B, and provides an estimate of the condition number and error bounds on the solution.
void pbsvx
(
char fact,
char uplo,
int n,
int kd,
int nrhs,
float* ab,
int ldab,
float* afb,
int ldafb,
char equed,
float* s,
float* b,
int ldb,
float* x,
int ldx,
float rcond,
float* ferr,
float* berr,
float* work,
int* iwork,
ref int info
);
Function pbsvx
void pbsvx
(
char fact,
char uplo,
int n,
int kd,
int nrhs,
double* ab,
int ldab,
double* afb,
int ldafb,
char equed,
double* s,
double* b,
int ldb,
double* x,
int ldx,
double rcond,
double* ferr,
double* berr,
double* work,
int* iwork,
ref int info
);
Function pbsvx
void pbsvx
(
char fact,
char uplo,
int n,
int kd,
int nrhs,
std .complex .Complex!(float)* ab,
int ldab,
std .complex .Complex!(float)* afb,
int ldafb,
char equed,
float* s,
std .complex .Complex!(float)* b,
int ldb,
std .complex .Complex!(float)* x,
int ldx,
float rcond,
float* ferr,
float* berr,
std .complex .Complex!(float)* work,
float* rwork,
ref int info
);
Function pbsvx
void pbsvx
(
char fact,
char uplo,
int n,
int kd,
int nrhs,
std .complex .Complex!(double)* ab,
int ldab,
std .complex .Complex!(double)* afb,
int ldafb,
char equed,
double* s,
std .complex .Complex!(double)* b,
int ldb,
std .complex .Complex!(double)* x,
int ldx,
double rcond,
double* ferr,
double* berr,
std .complex .Complex!(double)* work,
double* rwork,
ref int info
);