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

  /external/eigen/Eigen/src/Eigen2Support/
QR.h 36 MatrixType matrixQ(void) const {
  /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() */
232 HouseholderSequenceType matrixQ() const
258 * \sa matrixQ(), packedMatrix()
Tridiagonalization.h 53 * matrixQ() and matrixT() functions to retrieve the matrices Q and T in the
98 /** \brief Return type of matrixQ() */
238 HouseholderSequenceType matrixQ() const
261 * 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/
ColPivHouseholderQR.h 149 HouseholderSequenceType matrixQ(void) const
FullPivHouseholderQR.h 157 MatrixQReturnType matrixQ(void) const;
533 * \brief Expression type for return value of FullPivHouseholderQR::matrixQ()
595 inline typename FullPivHouseholderQR<MatrixType>::MatrixQReturnType FullPivHouseholderQR<MatrixType>::matrixQ() const
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 46 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
151 y = matrixQ().transpose() * b;
174 SPQRMatrixQReturnType<SPQR> matrixQ() const
  /external/eigen/Eigen/src/SparseQR/
SparseQR.h 51 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
133 * B2 = matrixQ() * B1;
139 * Q = SparseQR<SparseMatrix<double> >(A).matrixQ();
146 SparseQRMatrixQReturnType<SparseQR> matrixQ() const
174 y = this->matrixQ().transpose() * B;
686 dest.derived() = m_qr.matrixQ() * Dest::Identity(m_qr.rows(), m_qr.rows());

Completed in 167 milliseconds