Function ssygvd_

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.

extern(C) void ssygvd_ (
  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,
  int* info,
  int jobz_len,
  int uplo_len
);