<T>LAPACK 0.1.1
C++ Template Linear Algebra PACKage
Loading...
Searching...
No Matches
householder_ql.hpp File Reference
Include dependency graph for householder_ql.hpp:

Go to the source code of this file.

Classes

struct  tlapack::HouseholderQLOpts
 Options struct for householder_ql() More...
 

Enumerations

enum class  tlapack::HouseholderQLVariant : char { Level2 = '2' , Blocked = 'B' }
 Variants of the algorithm to compute the QL factorization.
 

Functions

template<TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t>
int tlapack::householder_ql (matrix_t &A, vector_t &tau, const HouseholderQLOpts &opts={})
 Computes a QL factorization of an m-by-n matrix A.
 
template<TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t, TLAPACK_WORKSPACE work_t>
int tlapack::householder_ql_work (matrix_t &A, vector_t &tau, work_t &work, const HouseholderQLOpts &opts={})
 Computes a QL factorization of an m-by-n matrix A. Workspace is provided as an argument.
 
template<class T , TLAPACK_MATRIX matrix_t, TLAPACK_VECTOR vector_t>
constexpr WorkInfo tlapack::householder_ql_worksize (const matrix_t &A, const vector_t &tau, const HouseholderQLOpts &opts={})
 Worspace query of householder_ql()
 

Detailed Description

Author
Weslley S Pereira, University of Colorado Denver, USA