mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-09-25 15:53:19 +08:00
add matrixQR() method exposing the storage. that's where the householder thing impacts the API.
This commit is contained in:
parent
e057beee4e
commit
889726bf7c
@ -96,6 +96,11 @@ template<typename MatrixType> class HouseholderQR
|
|||||||
|
|
||||||
MatrixType matrixQ(void) const;
|
MatrixType matrixQ(void) const;
|
||||||
|
|
||||||
|
/** \returns a reference to the matrix where the Householder QR decomposition is stored
|
||||||
|
* in a LAPACK-compatible way.
|
||||||
|
*/
|
||||||
|
const MatrixType& matrixQR() const { return m_qr; }
|
||||||
|
|
||||||
void compute(const MatrixType& matrix);
|
void compute(const MatrixType& matrix);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user