HomeSort by relevance Sort by last modified time
    Searched defs:matrixQ (Results 1 - 8 of 8) sorted by null

  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 49 * computed, you can use the matrixH() and matrixQ() functions to construct
84 /** \brief Return type of matrixQ() */
234 HouseholderSequenceType matrixQ() const
260 * \sa matrixQ(), packedMatrix()
Tridiagonalization.h 55 * matrixQ() and matrixT() functions to retrieve the matrices Q and T in the
98 /** \brief Return type of matrixQ() */
240 HouseholderSequenceType matrixQ() const
263 * matrixQ(), packedMatrix(), diagonal(), subDiagonal()
RealQZ.h 43 * matrixT(), matrixQ() and matrixZ() functions to retrieve the matrices
119 const MatrixType& matrixQ() const {
  /external/eigen/Eigen/src/QR/
CompleteOrthogonalDecomposition.h 155 HouseholderSequenceType matrixQ(void) const { return m_cpqr.householderQ(); }
ColPivHouseholderQR.h 182 HouseholderSequenceType matrixQ() const
FullPivHouseholderQR.h 184 MatrixQReturnType matrixQ(void) const;
591 * \brief Expression type for return value of FullPivHouseholderQR::matrixQ()
657 inline typename FullPivHouseholderQR<MatrixType>::MatrixQReturnType FullPivHouseholderQR<MatrixType>::matrixQ() const
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 47 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
157 y = matrixQ().transpose() * b;
189 SPQRMatrixQReturnType<SPQR> matrixQ() const
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 55 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
160 * B2 = matrixQ() * B1;
166 * Q = SparseQR<SparseMatrix<double> >(A).matrixQ();
173 SparseQRMatrixQReturnType<SparseQR> matrixQ() const
201 y = this->matrixQ().transpose() * B;
731 dst = src.m_qr.matrixQ() * DstXprType::Identity(src.m_qr.rows(), src.m_qr.rows());

Completed in 382 milliseconds