gglse - multiple declarations
Function gglse
Solves the LSE (Constrained Linear Least Squares Problem) using the GRQ (Generalized RQ) factorization
void gglse
(
int m,
int n,
int p,
float* a,
int lda,
float* b,
int ldb,
float* c,
float* d,
float* x,
float* work,
int lwork,
ref int info
);
Function gglse
void gglse
(
int m,
int n,
int p,
double* a,
int lda,
double* b,
int ldb,
double* c,
double* d,
double* x,
double* work,
int lwork,
ref int info
);
Function gglse
void gglse
(
int m,
int n,
int p,
std .complex .Complex!(float)* a,
int lda,
std .complex .Complex!(float)* b,
int ldb,
std .complex .Complex!(float)* c,
std .complex .Complex!(float)* d,
std .complex .Complex!(float)* x,
std .complex .Complex!(float)* work,
int lwork,
ref int info
);
Function gglse
void gglse
(
int m,
int n,
int p,
std .complex .Complex!(double)* a,
int lda,
std .complex .Complex!(double)* b,
int ldb,
std .complex .Complex!(double)* c,
std .complex .Complex!(double)* d,
std .complex .Complex!(double)* x,
std .complex .Complex!(double)* work,
int lwork,
ref int info
);