STK++ 0.9.13
|
In this file we define and implement utilities classes and methods for the interface with lapack. More...
Go to the source code of this file.
Namespaces | |
namespace | STK |
The namespace STK is the main domain space of the Statistical ToolKit project. | |
namespace | STK::lapack |
namespace enclosing the wrappers of the lapack routines. | |
Functions | |
int | STK::lapack::gelsd (int m, int n, int nrhs, Real *a, int lda, Real *b, int ldb, Real *s, Real *rcond, int *rank, Real *work, int lWork, int *iwork) |
wrapper of the LAPACK GELSD routine: computes the minimum-norm solution to a real linear least squares problem. | |
int | STK::lapack::geqrf (int m, int n, Real *a, int lda, Real *tau, Real *work, int lWork) |
wrapper of the LAPACK DGEQRF routine: computes the Qr decomposition of a matrix. | |
int | STK::lapack::gesdd (char jobz, int m, int n, Real *a, int lda, Real *s, Real *u, int ldu, Real *vt, int ldvt, Real *work, int lWork, int *iWork) |
wrapper of the LAPACK DGESDD routine. | |
int | STK::lapack::syevr (char jobz, char range, char uplo, int n, Real *a, int lda, Real vl, Real vu, int il, int iu, Real abstol, int *m, Real *w, Real *z, int ldz, int *isuppz, Real *work, int lWork, int *iwork, int liwork) |
wrapper of the LAPACK SYEVR routine. | |
In this file we define and implement utilities classes and methods for the interface with lapack.
Definition in file STK_lapack_Util.h.