hbgst - multiple declarations

Function hbgst

Reduces a complex Hermitian-definite banded generalized eigenproblem A x = lambda B x to standard form, where B has been factorized by CPBSTF (Crawford's algorithm).

void hbgst (
  char vect,
  char uplo,
  int n,
  int ka,
  int kb,
  std.complex.Complex!(float)* ab,
  int ldab,
  std.complex.Complex!(float)* bb,
  int ldbb,
  std.complex.Complex!(float)* x,
  int ldx,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function hbgst

void hbgst (
  char vect,
  char uplo,
  int n,
  int ka,
  int kb,
  std.complex.Complex!(double)* ab,
  int ldab,
  std.complex.Complex!(double)* bb,
  int ldbb,
  std.complex.Complex!(double)* x,
  int ldx,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);