sptri - multiple declarations
Function sptri
Computes the inverse of a real symmetric indefinite matrix in packed storage, using the factorization computed by SSPTRF.
void sptri
(
char uplo,
int n,
float* ap,
int* ipiv,
float* work,
ref int info
);
Function sptri
void sptri
(
char uplo,
int n,
double* ap,
int* ipiv,
double* work,
ref int info
);
Function sptri
void sptri
(
char uplo,
int n,
std .complex .Complex!(float)* ap,
int* ipiv,
std .complex .Complex!(float)* work,
ref int info
);
Function sptri
void sptri
(
char uplo,
int n,
std .complex .Complex!(double)* ap,
int* ipiv,
std .complex .Complex!(double)* work,
ref int info
);