gesv - multiple declarations

Function gesv

Solves a general system of linear equations AX=B.

void gesv (
  int n,
  int nrhs,
  float* a,
  int lda,
  int* ipiv,
  float* b,
  int ldb,
  ref int info
);

Function gesv

void gesv (
  int n,
  int nrhs,
  double* a,
  int lda,
  int* ipiv,
  double* b,
  int ldb,
  ref int info
);

Function gesv

void gesv (
  int n,
  int nrhs,
  std.complex.Complex!(float)* a,
  int lda,
  int* ipiv,
  std.complex.Complex!(float)* b,
  int ldb,
  ref int info
);

Function gesv

void gesv (
  int n,
  int nrhs,
  std.complex.Complex!(double)* a,
  int lda,
  int* ipiv,
  std.complex.Complex!(double)* b,
  int ldb,
  ref int info
);