sygvd - multiple declarations
Function sygvd
Computes all eigenvalues and the eigenvectors of a generalized symmetric-definite generalized eigenproblem, Ax= lambda Bx, ABx= lambda x, or BAx= lambda x. If eigenvectors are desired, it uses a divide and conquer algorithm.
void sygvd
(
int itype,
char jobz,
char uplo,
int n,
float* a,
int lda,
float* b,
int ldb,
float* w,
float* work,
int lwork,
int* iwork,
int liwork,
ref int info
);
Function sygvd
void sygvd
(
int itype,
char jobz,
char uplo,
int n,
double* a,
int lda,
double* b,
int ldb,
double* w,
double* work,
int lwork,
int* iwork,
int liwork,
ref int info
);