ggglm - multiple declarations

Function ggglm

Solves the GLM (Generalized Linear Regression Model) using the GQR (Generalized QR) factorization

void ggglm (
  int n,
  int m,
  int p,
  float* a,
  int lda,
  float* b,
  int ldb,
  float* d,
  float* x,
  float* y,
  float* work,
  int lwork,
  ref int info
);

Function ggglm

void ggglm (
  int n,
  int m,
  int p,
  double* a,
  int lda,
  double* b,
  int ldb,
  double* d,
  double* x,
  double* y,
  double* work,
  int lwork,
  ref int info
);

Function ggglm

void ggglm (
  int n,
  int m,
  int p,
  std.complex.Complex!(float)* a,
  int lda,
  std.complex.Complex!(float)* b,
  int ldb,
  std.complex.Complex!(float)* d,
  std.complex.Complex!(float)* x,
  std.complex.Complex!(float)* y,
  std.complex.Complex!(float)* work,
  int lwork,
  ref int info
);

Function ggglm

void ggglm (
  int n,
  int m,
  int p,
  std.complex.Complex!(double)* a,
  int lda,
  std.complex.Complex!(double)* b,
  int ldb,
  std.complex.Complex!(double)* d,
  std.complex.Complex!(double)* x,
  std.complex.Complex!(double)* y,
  std.complex.Complex!(double)* work,
  int lwork,
  ref int info
);