12#ifndef TLAPACK_UNGQR_HH
13#define TLAPACK_UNGQR_HH
51template <TLAPACK_SMATRIX matrix_t, TLAPACK_SVECTOR vector_t>
int ungq(direction_t direction, storage_t storeMode, matrix_t &A, const vector_t &tau, const UngqOpts &opts={})
Generates a matrix Q that is the product of elementary reflectors.
Definition ungq.hpp:352
int ungqr(matrix_t &A, const vector_t &tau, const UngqrOpts &opts={})
Generates a matrix Q with orthogonal columns.
Definition ungqr.hpp:52
Applies a Householder block reflector to a matrix.
Forms the triangular factor T of a block reflector.
Sort the numbers in D in increasing order (if ID = 'I') or in decreasing order (if ID = 'D' ).
Definition arrayTraits.hpp:15
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
constexpr internal::Forward FORWARD
Forward direction.
Definition types.hpp:381
constexpr internal::ColumnwiseStorage COLUMNWISE_STORAGE
Columnwise storage.
Definition types.hpp:414
Options struct for ungqr.
Definition ungqr.hpp:27
size_t nb
Block size.
Definition ungqr.hpp:28