spcon - multiple declarations
Function spcon
void spcon
(
char uplo,
int n,
std .complex .Complex!(double)* ap,
int* ipiv,
double* anorm,
double rcond,
std .complex .Complex!(double)* work,
ref int info
);
Function spcon
void spcon
(
char uplo,
int n,
std .complex .Complex!(float)* ap,
int* ipiv,
float* anorm,
float rcond,
std .complex .Complex!(float)* work,
ref int info
);
Function spcon
void spcon
(
char uplo,
int n,
double* ap,
int* ipiv,
double* anorm,
double rcond,
double* work,
int* iwork,
ref int info
);
Function spcon
Estimates the reciprocal of the condition number of a real symmetric indefinite matrix in packed storage, using the factorization computed by SSPTRF.
void spcon
(
char uplo,
int n,
float* ap,
int* ipiv,
float* anorm,
float rcond,
float* work,
int* iwork,
ref int info
);