sbgv - multiple declarations
Function sbgv
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.
void sbgv
(
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,
ref int info
);
Function sbgv
void sbgv
(
char jobz,
char uplo,
int n,
int ka,
int kb,
double* ab,
int ldab,
double* bb,
int ldbb,
double* w,
double* z,
int ldz,
double* work,
ref int info
);