Function ssyev_

Computes all eigenvalues, and optionally, eigenvectors of a real symmetric matrix.

extern(C) void ssyev_ (
  char* jobz,
  char* uplo,
  int* n,
  float* a,
  int* lda,
  float* w,
  float* work,
  int* lwork,
  int* info,
  int jobz_len,
  int uplo_len
);