gelsy - multiple declarations

Function gelsy

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

Function gelsy

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

Function gelsy

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

Function gelsy

Computes the minimum norm least squares solution to an over- or under-determined system of linear equations A X=B, using a complete orthogonal factorization of A.

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