Function sgesvd_

Computes the singular value decomposition (SVD) of a general rectangular matrix.

extern(C) void sgesvd_ (
  char* jobu,
  char* jobvt,
  int* m,
  int* n,
  float* a,
  int* lda,
  float* s,
  float* u,
  int* ldu,
  float* vt,
  int* ldvt,
  float* work,
  int* lwork,
  int* info,
  int jobu_len,
  int jobvt_len
);