geqpf - multiple declarations

Function geqpf

Computes a QR factorization with column pivoting of a general rectangular matrix.

void geqpf (
  int m,
  int n,
  float* a,
  int lda,
  int jpvt,
  float* tau,
  float* work,
  ref int info
);

Function geqpf

void geqpf (
  int m,
  int n,
  double* a,
  int lda,
  int jpvt,
  double* tau,
  double* work,
  ref int info
);

Function geqpf

void geqpf (
  int m,
  int n,
  std.complex.Complex!(float)* a,
  int lda,
  int jpvt,
  std.complex.Complex!(float)* tau,
  std.complex.Complex!(float)* work,
  float* rwork,
  ref int info
);

Function geqpf

void geqpf (
  int m,
  int n,
  std.complex.Complex!(double)* a,
  int lda,
  int jpvt,
  std.complex.Complex!(double)* tau,
  std.complex.Complex!(double)* work,
  double* rwork,
  ref int info
);