pteqr - multiple declarations

Function pteqr

void pteqr (
  char compz,
  int n,
  double* d,
  double* e,
  std.complex.Complex!(double)* z,
  int ldz,
  double* work,
  ref int info
);

Function pteqr

void pteqr (
  char compz,
  int n,
  float* d,
  float* e,
  std.complex.Complex!(float)* z,
  int ldz,
  float* work,
  ref int info
);

Function pteqr

void pteqr (
  char compz,
  int n,
  double* d,
  double* e,
  double* z,
  int ldz,
  double* work,
  ref int info
);

Function pteqr

Computes all eigenvalues and eigenvectors of a real symmetric positive definite tridiagonal matrix, by computing the SVD of its bidiagonal Cholesky factor.

void pteqr (
  char compz,
  int n,
  float* d,
  float* e,
  float* z,
  int ldz,
  float* work,
  ref int info
);