Home
last modified time | relevance | path

Searched refs:topRightCorner (Results 1 – 13 of 13) 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()
/external/eigen/doc/snippets/
DMatrixBase_topRightCorner_int_int.cpp4 cout << m.topRightCorner(2, 2) << endl;
5 m.topRightCorner(2, 2).setZero();
DMatrixBase_template_int_int_topRightCorner.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.h80 inline Block<Derived> topRightCorner(Index cRows, Index cCols) in topRightCorner() function
86 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const in topRightCorner() function
102 inline Block<Derived, CRows, CCols> topRightCorner() in topRightCorner() function
109 inline const Block<const Derived, CRows, CCols> topRightCorner() const in topRightCorner() function
132 inline Block<Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) in topRightCorner() function
139 inline const Block<const Derived, CRows, CCols> topRightCorner(Index cRows, Index cCols) const 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.txt75 P.topRightCorner(rows, cols) // P(1:rows, end-cols+1:end)
79 P.topRightCorner<rows,cols>() // P(1:rows, end-cols+1:end)
DA05_PortingFrom2To3.dox66 matrix.topRightCorner(r,c)
70 matrix.topRightCorner<r,c>()
DSparseQuickReference.dox192 sm1.topRightCorner(rows, cols);
DQuickReference.dox495 mat1.topRightCorner(rows,cols)
500 mat1.topRightCorner<rows,cols>()
/external/eigen/Eigen/src/LU/
DFullPivLU.h620 m.topRightCorner(rank(), dimker)
/external/eigen/Eigen/src/Geometry/
DTransform.h1161 res.matrix().template topRightCorner<Dim,1>()