Function sgesdd_

Computes the singular value decomposition (SVD) of a general rectangular matrix using divide-and-conquer.

extern(C) void sgesdd_ (
  char* jobz,
  int* m,
  int* n,
  float* a,
  int* lda,
  float* s,
  float* u,
  int* ldu,
  float* vt,
  int* ldvt,
  float* work,
  int* lwork,
  int* iwork,
  int* info,
  int jobz_len
);