gtrfs - multiple declarations
Function gtrfs
Improves the computed solution to a general tridiagonal system of linear equations AX=B, A**T X=B or A**H X=B, and provides forward and backward error bounds for the solution.
void gtrfs
(
char trans,
int n,
int nrhs,
float* dl,
float* d,
float* du,
float* dlf,
float* df,
float* duf,
float* du2,
int* ipiv,
float* b,
int ldb,
float* x,
int ldx,
float* ferr,
float* berr,
float* work,
int* iwork,
ref int info
);
Function gtrfs
void gtrfs
(
char trans,
int n,
int nrhs,
double* dl,
double* d,
double* du,
double* dlf,
double* df,
double* duf,
double* du2,
int* ipiv,
double* b,
int ldb,
double* x,
int ldx,
double* ferr,
double* berr,
double* work,
int* iwork,
ref int info
);
Function gtrfs
void gtrfs
(
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)* dlf,
std .complex .Complex!(float)* df,
std .complex .Complex!(float)* duf,
std .complex .Complex!(float)* du2,
int* ipiv,
std .complex .Complex!(float)* b,
int ldb,
std .complex .Complex!(float)* x,
int ldx,
float* ferr,
float* berr,
std .complex .Complex!(float)* work,
float* rwork,
ref int info
);
Function gtrfs
void gtrfs
(
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)* dlf,
std .complex .Complex!(double)* df,
std .complex .Complex!(double)* duf,
std .complex .Complex!(double)* du2,
int* ipiv,
std .complex .Complex!(double)* b,
int ldb,
std .complex .Complex!(double)* x,
int ldx,
double* ferr,
double* berr,
std .complex .Complex!(double)* work,
double* rwork,
ref int info
);