|
<T>LAPACK 0.1.2
C++ Template Linear Algebra PACKage
|
#include "tlapack/base/utils.hpp"#include "tlapack/blas/scal.hpp"#include "tlapack/lapack/larf.hpp"#include "tlapack/lapack/laset.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, TLAPACK_DIRECTION direction_t, TLAPACK_STOREV storage_t> | |
| int | tlapack::ungq_level2 (direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau) |
| Generates a matrix Q that is the product of elementary reflectors. | |
| template<TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t, TLAPACK_DIRECTION direction_t, TLAPACK_STOREV storage_t, TLAPACK_WORKSPACE work_t> | |
| int | tlapack::ungq_level2_work (direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau, work_t &work) |
| Generates a matrix Q that is the product of elementary reflectors. Workspace is provided as an argument. | |
| template<class T , TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t, TLAPACK_DIRECTION direction_t, TLAPACK_STOREV storage_t> | |
| constexpr WorkInfo | tlapack::ungq_level2_worksize (direction_t direction, storage_t storeMode, const matrix_t &A, const vector_t &tau) |
| Worspace query of ungq_level2() | |