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