Function sgelss_

Computes the minimum norm least squares solution to an over- or under-determined system of linear equations A X=B, using the singular value decomposition of A.

extern(C) void sgelss_ (
  int* m,
  int* n,
  int* nrhs,
  float* a,
  int* lda,
  float* b,
  int* ldb,
  float* s,
  float* rcond,
  int* rank,
  float* work,
  int* lwork,
  int* info
);