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