|
<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"#include "tlapack/lapack/ung2r.hpp"#include "tlapack/lapack/unm2r.hpp"

Go to the source code of this file.
Namespaces | |
| namespace | tlapack |
| Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ). | |
Functions | |
| template<TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t> | |
| int | tlapack::unmhr (Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, matrix_t &C) |
| Applies unitary matrix Q to a matrix C. | |
| template<TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t, TLAPACK_WORKSPACE work_t> | |
| int | tlapack::unmhr_work (Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, matrix_t &C, work_t &work) |
| Applies unitary matrix Q to a matrix C. Workspace is provided as an argument. | |
| template<class T , TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t> | |
| constexpr WorkInfo | tlapack::unmhr_worksize (Side side, Op trans, size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau, const matrix_t &C) |
| Worspace query of unmhr() | |