sbgvd

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.

  1. void sbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_float* ab, f_int ldab, f_float* bb, f_int ldbb, f_float* w, f_float* z, f_int ldz, f_float* work, f_int lwork, f_int* iwork, f_int liwork, f_int info)
  2. void sbgvd(char jobz, char uplo, f_int n, f_int ka, f_int kb, f_double* ab, f_int ldab, f_double* bb, f_int ldbb, f_double* w, f_double* z, f_int ldz, f_double* work, f_int lwork, f_int* iwork, f_int liwork, f_int info)

Meta