gttrf - multiple declarations
Function gttrf
Computes an LU factorization of a general tridiagonal matrix, using partial pivoting with row interchanges.
void gttrf
(
int n,
float* dl,
float* d,
float* du,
float* du2,
int* ipiv,
ref int info
);
Function gttrf
void gttrf
(
int n,
double* dl,
double* d,
double* du,
double* du2,
int* ipiv,
ref int info
);
Function gttrf
void gttrf
(
int n,
std .complex .Complex!(float)* dl,
std .complex .Complex!(float)* d,
std .complex .Complex!(float)* du,
std .complex .Complex!(float)* du2,
int* ipiv,
ref int info
);
Function gttrf
void gttrf
(
int n,
std .complex .Complex!(double)* dl,
std .complex .Complex!(double)* d,
std .complex .Complex!(double)* du,
std .complex .Complex!(double)* du2,
int* ipiv,
ref int info
);