mirror of
https://gitlab.com/libeigen/eigen.git
synced 2026-04-10 11:34:33 +08:00
add matrixQR() method exposing the storage. that's where the householder thing impacts the API.
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user