Searched refs:matrixQ (Results 1 - 25 of 27) sorted by relevance

12

/external/eigen/doc/snippets/
H A DRealQZ_compute.cpp9 cout << "Q:\n" << qz.matrixQ() << "\n" << "Z:\n" << qz.matrixZ() << "\n";
13 << "\n|A-QSZ|: " << (A-qz.matrixQ()*qz.matrixS()*qz.matrixZ()).norm()
14 << ", |B-QTZ|: " << (B-qz.matrixQ()*qz.matrixT()*qz.matrixZ()).norm()
15 << "\n|QQ* - I|: " << (qz.matrixQ()*qz.matrixQ().adjoint() - MatrixXf::Identity(4,4)).norm()
H A DHessenbergDecomposition_matrixH.cpp6 MatrixXf Q = hessOfA.matrixQ();
H A DTridiagonalization_Tridiagonalization_MatrixType.cpp5 MatrixXd Q = triOfA.matrixQ();
/external/eigen/test/eigen2/
H A Deigen2_qr.cpp27 VERIFY_IS_APPROX(a, qrOfA.matrixQ() * qrOfA.matrixR());
28 VERIFY_IS_NOT_APPROX(a+MatrixType::Identity(rows, cols), qrOfA.matrixQ() * qrOfA.matrixR());
35 VERIFY_IS_APPROX(b, tridiag.matrixQ() * tridiag.matrixT() * tridiag.matrixQ().adjoint());
39 VERIFY_IS_APPROX(b, hess.matrixQ() * hess.matrixH() * hess.matrixQ().adjoint());
43 VERIFY_IS_APPROX(b, hess.matrixQ() * hess.matrixH() * hess.matrixQ().adjoint());
H A Deigen2_hyperplane.cpp52 MatrixType rot = MatrixType::Random(dim,dim).qr().matrixQ();
/external/eigen/test/
H A Dhessenberg.cpp22 MatrixType Q = hess.matrixQ();
38 MatrixType cs1Q = cs1.matrixQ();
39 MatrixType cs2Q = cs2.matrixQ();
45 VERIFY_RAISES_ASSERT( hessUninitialized.matrixQ() );
H A Dreal_qz.cpp43 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixS()*qz.matrixZ(), A);
44 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixT()*qz.matrixZ(), B);
45 VERIFY_IS_APPROX(qz.matrixQ()*qz.matrixQ().adjoint(), MatrixType::Identity(dim,dim));
H A Dqr_fullpivoting.cpp34 MatrixQType q = qr.matrixQ();
40 MatrixType c = qr.matrixQ() * r * qr.colsPermutation().inverse();
83 m3 = qr.matrixQ(); // get a unitary
97 VERIFY_RAISES_ASSERT(qr.matrixQ())
H A Dsparseqr.cpp85 Q = solver.matrixQ();
H A Deigensolver_selfadjoint.cpp99 // FIXME tridiag.matrixQ().adjoint() does not work
100 VERIFY_IS_APPROX(MatrixType(symmA.template selfadjointView<Lower>()), tridiag.matrixQ() * tridiag.matrixT().eval() * MatrixType(tridiag.matrixQ()).adjoint());
/external/eigen/Eigen/src/Eigen2Support/
H A DQR.h36 MatrixType matrixQ(void) const { function in class:Eigen::QR
/external/eigen/Eigen/src/Eigenvalues/
H A DComplexSchur.h193 * \param[in] matrixQ orthogonal matrix Q that transform a matrix A to H : A = Q H Q^T
209 ComplexSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU=true);
338 ComplexSchur<MatrixType>& ComplexSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
342 m_matU = matrixQ;
357 if(computeU) _this.m_matU = _this.m_hess.matrixQ();
374 MatrixType Q = _this.m_hess.matrixQ();
H A DHessenbergDecomposition.h49 * computed, you can use the matrixH() and matrixQ() functions to construct
84 /** \brief Return type of matrixQ() */
232 HouseholderSequenceType matrixQ() const function in class:Eigen::HessenbergDecomposition
258 * \sa matrixQ(), packedMatrix()
H A DRealSchur.h172 * \param[in] matrixQ orthogonal matrix Q that transform a matrix A to H : A = Q H Q^T
188 RealSchur& computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU);
257 computeFromHessenberg(m_hess.matrixH(), m_hess.matrixQ(), computeU);
263 RealSchur<MatrixType>& RealSchur<MatrixType>::computeFromHessenberg(const HessMatrixType& matrixH, const OrthMatrixType& matrixQ, bool computeU) argument
267 m_matU = matrixQ;
H A DSelfAdjointEigenSolver.h380 static void tridiagonal_qr_step(RealScalar* diag, RealScalar* subdiag, Index start, Index end, Scalar* matrixQ, Index n);
740 static void tridiagonal_qr_step(RealScalar* diag, RealScalar* subdiag, Index start, Index end, Scalar* matrixQ, Index n) argument
789 if (matrixQ)
792 Map<Matrix<Scalar,Dynamic,Dynamic,StorageOrder> > q(matrixQ,n,n);
H A DTridiagonalization.h53 * matrixQ() and matrixT() functions to retrieve the matrices Q and T in the
98 /** \brief Return type of matrixQ() */
238 HouseholderSequenceType matrixQ() const function in class:Eigen::Tridiagonalization
261 * matrixQ(), packedMatrix(), diagonal(), subDiagonal()
/external/opencv/cv/src/
H A Dcvgeometry.cpp355 cvRQDecomp3x3( const CvMat *matrixM, CvMat *matrixR, CvMat *matrixQ, argument
369 CV_ASSERT( CV_IS_MAT(matrixM) && CV_IS_MAT(matrixR) && CV_IS_MAT(matrixQ) &&
371 CV_ARE_SIZES_EQ(matrixM, matrixR) && CV_ARE_SIZES_EQ(matrixM, matrixQ));
513 cvConvert( &Q, matrixQ );
/external/eigen/Eigen/src/SPQRSupport/
H A DSuiteSparseQRSupport.h46 * Use matrixQ() to get an expression and matrixQ().transpose() to get the transpose.
151 y = matrixQ().transpose() * b;
174 SPQRMatrixQReturnType<SPQR> matrixQ() const function in class:Eigen::SPQR
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h51 * 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 function in class:Eigen::SparseQR
174 y = this->matrixQ().transpose() * B;
657 dest.derived() = m_qr.matrixQ() * Dest::Identity(m_qr.rows(), m_qr.rows());
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
H A DDGMRES.h439 DenseMatrix matrixQ(it,it);
440 matrixQ.setIdentity();
441 schurofH.computeFromHessenberg(m_Hes.topLeftCorner(it,it), matrixQ, computeU);
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
H A DLMonestep.h70 m_wa4 = qrfac.matrixQ().adjoint() * m_fvec;
/external/eigen/Eigen/src/QR/
H A DFullPivHouseholderQR.h157 MatrixQReturnType matrixQ(void) const;
533 * \brief Expression type for return value of FullPivHouseholderQR::matrixQ()
595 inline typename FullPivHouseholderQR<MatrixType>::MatrixQReturnType FullPivHouseholderQR<MatrixType>::matrixQ() const function in class:Eigen::FullPivHouseholderQR
H A DColPivHouseholderQR.h149 HouseholderSequenceType matrixQ(void) const function in class:Eigen::ColPivHouseholderQR
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h93 if(svd.m_computeFullU) m_qr.matrixQ().evalTo(svd.m_matrixU, m_workspace);
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace);
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h93 if(svd.m_computeFullU) m_qr.matrixQ().evalTo(svd.m_matrixU, m_workspace);
140 if(svd.m_computeFullV) m_qr.matrixQ().evalTo(svd.m_matrixV, m_workspace);

Completed in 2692 milliseconds

12