pptrs - multiple declarations
Function pptrs
Solves a symmetric positive definite system of linear equations AX=B, where A is held in packed storage, using the Cholesky factorization computed by SPPTRF.
void pptrs
(
char uplo,
int n,
int nrhs,
float* ap,
float* b,
int ldb,
ref int info
);
Function pptrs
void pptrs
(
char uplo,
int n,
int nrhs,
double* ap,
double* b,
int ldb,
ref int info
);
Function pptrs
void pptrs
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(float)* ap,
std .complex .Complex!(float)* b,
int ldb,
ref int info
);
Function pptrs
void pptrs
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(double)* ap,
std .complex .Complex!(double)* b,
int ldb,
ref int info
);