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