12#ifndef TLAPACK_UNGHR_HH
13#define TLAPACK_UNGHR_HH
38template <
class T, TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t>
83 const idx_t m = nrows(
A);
84 const idx_t n = ncols(
A);
96 for (idx_t j =
ihi - 1; j >
ilo; --j) {
97 for (idx_t i = 0; i < j; ++i) {
100 for (idx_t i = j + 1; i <
ihi; ++i) {
101 A(i, j) =
A(i, j - 1);
103 for (idx_t i =
ihi; i < n; ++i) {
107 for (idx_t j = 0; j <
ilo + 1; ++j) {
108 for (idx_t i = 0; i < n; ++i) {
113 for (idx_t j =
ihi; j < n; ++j) {
114 for (idx_t i = 0; i < n; ++i) {
150template <TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t>
163 std::vector<T>
work_;
constexpr internal::Forward FORWARD
Forward direction.
Definition types.hpp:381
constexpr internal::ColumnwiseStorage COLUMNWISE_STORAGE
Columnwise storage.
Definition types.hpp:414
#define TLAPACK_SVECTOR
Macro for tlapack::concepts::SliceableVector compatible with C++17.
Definition concepts.hpp:909
#define TLAPACK_SMATRIX
Macro for tlapack::concepts::SliceableMatrix compatible with C++17.
Definition concepts.hpp:899
#define TLAPACK_WORKSPACE
Macro for tlapack::concepts::Workspace compatible with C++17.
Definition concepts.hpp:912
int ungq_work(direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau, work_t &work, const UngqOpts &opts={})
Generates a matrix Q that is the product of elementary reflectors. Workspace is provided as an argu...
Definition ungq.hpp:138
int unghr_work(size_type< matrix_t > ilo, size_type< matrix_t > ihi, matrix_t &A, const vector_t &tau, work_t &work)
Generates a m-by-n matrix Q with orthogonal columns. Workspace is provided as an argument.
Definition unghr.hpp:69
#define tlapack_check_false(cond)
Throw an error if cond is true.
Definition exceptionHandling.hpp:113
int unghr(size_type< matrix_t > ilo, size_type< matrix_t > ihi, matrix_t &A, const vector_t &tau)
Generates a m-by-n matrix Q with orthogonal columns.
Definition unghr.hpp:151
constexpr WorkInfo unghr_worksize(size_type< matrix_t > ilo, size_type< matrix_t > ihi, const matrix_t &A, const vector_t &tau)
Worspace query of unghr()
Definition unghr.hpp:39
typename traits::real_type_traits< Types..., int >::type real_type
The common real type of the list of types.
Definition scalar_type_traits.hpp:113
Output information in the workspace query.
Definition workspace.hpp:16