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