steqr - multiple declarations
Function steqr
Computes all eigenvalues and eigenvectors of a real symmetric tridiagonal matrix, using the implicit QL or QR algorithm.
void steqr
(
char compz,
int n,
float* d,
float* e,
float* z,
int ldz,
float* work,
ref int info
);
Function steqr
void steqr
(
char compz,
int n,
double* d,
double* e,
double* z,
int ldz,
double* work,
ref int info
);
Function steqr
void steqr
(
char compz,
int n,
float* d,
float* e,
std .complex .Complex!(float)* z,
int ldz,
float* work,
ref int info
);
Function steqr
void steqr
(
char compz,
int n,
double* d,
double* e,
std .complex .Complex!(double)* z,
int ldz,
double* work,
ref int info
);