mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-01-30 17:40:05 +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
@ -95,6 +95,11 @@ template<typename MatrixType> class HouseholderQR
|
||||
void solve(const MatrixBase<OtherDerived>& b, ResultType *result) 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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user