gtsv - multiple declarations
Function gtsv
Solves a general tridiagonal system of linear equations AX=B.
void gtsv
(
int n,
int nrhs,
float* dl,
float* d,
float* du,
float* b,
int ldb,
ref int info
);
Function gtsv
void gtsv
(
int n,
int nrhs,
double* dl,
double* d,
double* du,
double* b,
int ldb,
ref int info
);
Function gtsv
void gtsv
(
int n,
int nrhs,
std .complex .Complex!(float)* dl,
std .complex .Complex!(float)* d,
std .complex .Complex!(float)* du,
std .complex .Complex!(float)* b,
int ldb,
ref int info
);
Function gtsv
void gtsv
(
int n,
int nrhs,
std .complex .Complex!(double)* dl,
std .complex .Complex!(double)* d,
std .complex .Complex!(double)* du,
std .complex .Complex!(double)* b,
int ldb,
ref int info
);