Searched defs:matrixR (Results 1 - 6 of 6) sorted by relevance
/external/eigen/Eigen/src/Eigen2Support/ |
H A D | QR.h | 47 matrixR(void) const function in class:Eigen::QR
|
/external/eigen/Eigen/src/QR/ |
H A D | ColPivHouseholderQR.h | 165 * \code matrixR().template triangularView<Upper>() \endcode 168 * matrixR().topLeftCorner(rank(), rank()).template triangularView<Upper>() 171 const MatrixType& matrixR() const function in class:Eigen::ColPivHouseholderQR 544 dec().matrixR()
|
/external/eigen/Eigen/src/SPQRSupport/ |
H A D | SuiteSparseQRSupport.h | 167 y.topRows(rk) = this->matrixR().topLeftCorner(rk, rk).template triangularView<Upper>().solve(y2.topRows(rk)); 183 const MatrixType matrixR() const function in class:Eigen::SPQR
|
/external/eigen/Eigen/src/SparseQR/ |
H A D | SparseQR.h | 55 * matrixR().topLeftCorner(rank(), rank()) always returns a triangular factor of full rank. 116 const QRMatrixType& matrixR() const { return m_R; } function in class:Eigen::SparseQR 179 y.topRows(rank) = this->matrixR().topLeftCorner(rank, rank).template triangularView<Upper>().solve(b.topRows(rank));
|
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/ |
H A D | LevenbergMarquardt.h | 209 JacobianType& matrixR() {return m_rfactor; } function in class:Eigen::LevenbergMarquardt
|
/external/opencv/cv/src/ |
H A D | cvgeometry.cpp | 355 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)); 512 cvConvert( &R, matrixR );
|
Completed in 994 milliseconds