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