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