stegr - multiple declarations
Function stegr
Computes selected eigenvalues and, optionally, eigenvectors of a symmetric tridiagonal matrix. The eigenvalues are computed by the dqds algorithm, while eigenvectors are computed from various "good" LDL^T representations (also known as Relatively Robust Representations.)
void stegr
(
char jobz,
char range,
int n,
float* d,
float* e,
float* vl,
float* vu,
int il,
int iu,
float* abstol,
int m,
float* w,
float* z,
int ldz,
int isuppz,
float* work,
int lwork,
int* iwork,
int liwork,
ref int info
);
Function stegr
void stegr
(
char jobz,
char range,
int n,
double* d,
double* e,
double* vl,
double* vu,
int il,
int iu,
double* abstol,
int m,
double* w,
double* z,
int ldz,
int isuppz,
double* work,
int lwork,
int* iwork,
int liwork,
ref int info
);
Function stegr
void stegr
(
char jobz,
char range,
int n,
float* d,
float* e,
float* vl,
float* vu,
int il,
int iu,
float* abstol,
int m,
float* w,
std .complex .Complex!(float)* z,
int ldz,
int isuppz,
float* work,
int lwork,
int* iwork,
int liwork,
ref int info
);
Function stegr
void stegr
(
char jobz,
char range,
int n,
double* d,
double* e,
double* vl,
double* vu,
int il,
int iu,
double* abstol,
int m,
double* w,
std .complex .Complex!(double)* z,
int ldz,
int isuppz,
double* work,
int lwork,
int* iwork,
int liwork,
ref int info
);