gesvd - multiple declarations
Function gesvd
void gesvd
(
char jobu,
char jobvt,
int m,
int n,
std .complex .Complex!(double)* a,
int lda,
double* s,
std .complex .Complex!(double)* u,
int ldu,
std .complex .Complex!(double)* vt,
int ldvt,
std .complex .Complex!(double)* work,
int lwork,
double* rwork,
ref int info
);
Function gesvd
Computes the singular value decomposition (SVD) of a general rectangular matrix.
void gesvd
(
char jobu,
char jobvt,
int m,
int n,
float* a,
int lda,
float* s,
float* u,
int ldu,
float* vt,
int ldvt,
float* work,
int lwork,
ref int info
);
Function gesvd
void gesvd
(
char jobu,
char jobvt,
int m,
int n,
double* a,
int lda,
double* s,
double* u,
int ldu,
double* vt,
int ldvt,
double* work,
int lwork,
ref int info
);
Function gesvd
void gesvd
(
char jobu,
char jobvt,
int m,
int n,
std .complex .Complex!(float)* a,
int lda,
float* s,
std .complex .Complex!(float)* u,
int ldu,
std .complex .Complex!(float)* vt,
int ldvt,
std .complex .Complex!(float)* work,
int lwork,
float* rwork,
ref int info
);