Home
last modified time | relevance | path

Searched refs:topRightCorner (Results 1 – 17 of 17) sorted by relevance

/external/eigen/test/
Dcorners.cpp29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c)); in corners()
61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c))); in corners_fixedsize()
66 …VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<r,Dynamic… in corners_fixedsize()
71 …VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template topRightCorner<Dynamic,c… in corners_fixedsize()
83 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0… in corners_fixedsize()
88 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorn… in corners_fixedsize()
93 …VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template topRightCorn… in corners_fixedsize()
Dcommainitializer.cpp29 VERIFY_IS_EQUAL((m_fixed.template topRightCorner<M1,N2>()), mat12); in test_blocks()
Dgeo_homogeneous.cpp103 … (t2.template topLeftCorner<Size,Size>() * v0 + t2.template topRightCorner<Size,1>()) in homogeneous()
/external/eigen/doc/snippets/
DMatrixBase_template_int_int_topRightCorner.cpp4 cout << m.topRightCorner<2,2>() << endl;
5 m.topRightCorner<2,2>().setZero();
DMatrixBase_topRightCorner_int_int.cpp4 cout << m.topRightCorner(2, 2) << endl;
5 m.topRightCorner(2, 2).setZero();
DMatrixBase_template_int_int_topRightCorner_int_int.cpp4 cout << m.topRightCorner<2,Dynamic>(2,2) << endl;
5 m.topRightCorner<2,Dynamic>(2,2).setZero();
DTutorial_AdvancedInitialization_ThreeWays.cpp4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
11 mat2.topRightCorner(size/2, size/2).setIdentity();
/external/eigen/Eigen/src/plugins/
DBlockMethods.h92 inline BlockXpr topRightCorner(Index cRows, Index cCols) in topRightCorner() function
99 inline const ConstBlockXpr topRightCorner(Index cRows, Index cCols) const in topRightCorner() function
118 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner() in topRightCorner() function
126 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topRightCorner() const in topRightCorner() function
151 inline typename FixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols) in topRightCorner() function
158 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topRightCorner(Index cRows, Index cCols… in topRightCorner() function
/external/eigen/doc/
DTutorialBlockOperations.dox129 \link DenseBase::topRightCorner() * \endlink</td>
131 matrix.topRightCorner(p,q);\endcode </td>
133 matrix.topRightCorner<p,q>();\endcode </td>
DAsciiQuickReference.txt77 P.topRightCorner(rows, cols) // P(1:rows, end-cols+1:end)
81 P.topRightCorner<rows,cols>() // P(1:rows, end-cols+1:end)
DA05_PortingFrom2To3.dox61 matrix.topRightCorner(r,c)
65 matrix.topRightCorner<r,c>()
DSparseQuickReference.dox192 sm1.topRightCorner(rows, cols);
DQuickReference.dox553 mat1.topRightCorner(rows,cols)
558 mat1.topRightCorner<rows,cols>()
/external/eigen/unsupported/Eigen/src/MatrixFunctions/
DMatrixPower.h561 …m_fT.topRightCorner(m_rank, m_nulls) = m_T.topLeftCorner(m_rank, m_rank).template triangularView<U… in computeFracPower()
562 .solve(blockTp * m_T.topRightCorner(m_rank, m_nulls)); in computeFracPower()
/external/eigen/Eigen/src/QR/
DCompleteOrthogonalDecomposition.h453 m_cpqr.m_qr.topRightCorner(k, cols - rank + 1)
/external/eigen/Eigen/src/LU/
DFullPivLU.h688 m.topRightCorner(rank(), dimker)
/external/eigen/Eigen/src/Geometry/
DTransform.h1224 res.matrix().template topRightCorner<Dim,1>()