Function ssbgvd_
Computes all the eigenvalues, and optionally, the eigenvectors of a real generalized symmetric-definite banded eigenproblem, of the form A*x=(lambda)*B*x. A and B are assumed to be symmetric and banded, and B is also positive definite. If eigenvectors are desired, it uses a divide and conquer algorithm.
extern(C) void ssbgvd_
(
char* jobz,
char* uplo,
int* n,
int* ka,
int* kb,
float* ab,
int* ldab,
float* bb,
int* ldbb,
float* w,
float* z,
int* ldz,
float* work,
int* lwork,
int* iwork,
int* liwork,
int* info,
int jobz_len,
int uplo_len
);