<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"
#include "tlapack/lapack/gebrd.hpp"
#include "tlapack/lapack/svd_qr.hpp"
#include "tlapack/lapack/ungbr.hpp"
Go to the source code of this file.
Classes | |
struct | tlapack::GesvdOpts |
Options struct for gesvd. More... | |
Functions | |
template<TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR r_vector_t> | |
int | tlapack::gesvd (bool want_u, bool want_vt, matrix_t &A, r_vector_t &s, matrix_t &U, matrix_t &Vt, const GesvdOpts &opts={}) |
Computes the singular values and, optionally, the right and/or left singular vectors from the singular value decomposition (SVD) of a real M-by-N matrix A. | |