gelss - multiple declarations

Function gelss

void gelss (
  int m,
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* b,
  int ldb,
  double* s,
  double rcond,
  out int rank,
  std.complex.Complex!(double)* work,
  int lwork,
  double* rwork,
  ref int info
);

Function gelss

void gelss (
  int m,
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* b,
  int ldb,
  float* s,
  float rcond,
  out int rank,
  std.complex.Complex!(float)* work,
  int lwork,
  float* rwork,
  ref int info
);

Function gelss

void gelss (
  int m,
  int n,
  int nrhs,
  double* a,
  int lda,
  double* b,
  int ldb,
  double* s,
  double rcond,
  out int rank,
  double* work,
  int lwork,
  ref int info
);

Function gelss

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.

void gelss (
  int m,
  int n,
  int nrhs,
  float* a,
  int lda,
  float* b,
  int ldb,
  float* s,
  float rcond,
  out int rank,
  float* work,
  int lwork,
  ref int info
);