Dense QR decomposition, specialisation for doubles. More...
#include <dense_qr.h>
Inheritance diagram for syten::QR::DenseQR< double >:
Collaboration diagram for syten::QR::DenseQR< double >:Public Member Functions | |
| DenseQR ()=default | |
| Default ctor not doing any work. More... | |
| DenseQR (DenseTensor< 2, DenseQR::Scalar > &&input, FullQR const full=FullQR{false}) | |
| Standard ctor doing the decomposition. More... | |
Additional Inherited Members | |
Public Types inherited from syten::QR::DenseQRBase< double > | |
| typedef double | Scalar |
| The scalar type to be used. More... | |
Public Attributes inherited from syten::QR::DenseQRBase< double > | |
| DenseTensor< 2, Scalar > | qt |
| This is a column-major matrix as returned from LAPACK corresponding to \( Q \), so effectively it is \( Q^T \). More... | |
| DenseTensor< 2, Scalar > | rt |
| This is a column-major matrix as returned from LAPACK corresponding to \( R \), so it is effectively \( R^T
\). More... | |
Dense QR decomposition, specialisation for doubles.