geqp3 - multiple declarations
Function geqp3
Computes a QR factorization with column pivoting of a general rectangular matrix using Level 3 BLAS.
void geqp3
(
int m,
int n,
float* a,
int lda,
int jpvt,
float* tau,
float* work,
int lwork,
ref int info
);
Function geqp3
void geqp3
(
int m,
int n,
double* a,
int lda,
int jpvt,
double* tau,
double* work,
int lwork,
ref int info
);
Function geqp3
void geqp3
(
int m,
int n,
std .complex .Complex!(float)* a,
int lda,
int jpvt,
std .complex .Complex!(float)* tau,
std .complex .Complex!(float)* work,
int lwork,
float* rwork,
ref int info
);
Function geqp3
void geqp3
(
int m,
int n,
std .complex .Complex!(double)* a,
int lda,
int jpvt,
std .complex .Complex!(double)* tau,
std .complex .Complex!(double)* work,
int lwork,
double* rwork,
ref int info
);