tbcon - multiple declarations
Function tbcon
Estimates the reciprocal of the condition number of a triangular band matrix, in either the 1-norm or the infinity-norm.
void tbcon
(
char norm,
char uplo,
char diag,
int n,
int kd,
float* ab,
int ldab,
float rcond,
float* work,
int* iwork,
ref int info
);
Function tbcon
void tbcon
(
char norm,
char uplo,
char diag,
int n,
int kd,
double* ab,
int ldab,
double rcond,
double* work,
int* iwork,
ref int info
);
Function tbcon
void tbcon
(
char norm,
char uplo,
char diag,
int n,
int kd,
std .complex .Complex!(float)* ab,
int ldab,
float rcond,
std .complex .Complex!(float)* work,
float* rwork,
ref int info
);
Function tbcon
void tbcon
(
char norm,
char uplo,
char diag,
int n,
int kd,
std .complex .Complex!(double)* ab,
int ldab,
double rcond,
std .complex .Complex!(double)* work,
double* rwork,
ref int info
);