getrs - multiple declarations
Function getrs
void getrs
(
char trans,
int n,
int nrhs,
std .complex .Complex!(double)* a,
int lda,
int* ipiv,
std .complex .Complex!(double)* b,
int ldb,
ref int info
);
Function getrs
void getrs
(
char trans,
int n,
int nrhs,
std .complex .Complex!(float)* a,
int lda,
int* ipiv,
std .complex .Complex!(float)* b,
int ldb,
ref int info
);
Function getrs
void getrs
(
char trans,
int n,
int nrhs,
double* a,
int lda,
int* ipiv,
double* b,
int ldb,
ref int info
);
Function getrs
Solves a general system of linear equations AX=B, A**T X=B or A**H X=B, using the LU factorization computed by SGETRF.
void getrs
(
char trans,
int n,
int nrhs,
float* a,
int lda,
int* ipiv,
float* b,
int ldb,
ref int info
);