posv - multiple declarations
Function posv
Solves a symmetric positive definite system of linear equations AX=B.
void posv
(
char uplo,
int n,
int nrhs,
float* a,
int lda,
float* b,
int ldb,
ref int info
);
Function posv
void posv
(
char uplo,
int n,
int nrhs,
double* a,
int lda,
double* b,
int ldb,
ref int info
);
Function posv
void posv
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(float)* a,
int lda,
std .complex .Complex!(float)* b,
int ldb,
ref int info
);
Function posv
void posv
(
char uplo,
int n,
int nrhs,
std .complex .Complex!(double)* a,
int lda,
std .complex .Complex!(double)* b,
int ldb,
ref int info
);