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