Home
last modified time | relevance | path

Searched refs:bottomLeftCorner (Results 1 – 14 of 14) sorted by relevance

/external/eigen/test/
Dcorners.cpp30 COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c)); in corners()
62 …VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0))); in corners_fixedsize()
67 …VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<r,Dyn… in corners_fixedsize()
72 …VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template bottomLeftCorner<Dynam… in corners_fixedsize()
84 …VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>… in corners_fixedsize()
89 …VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeft… in corners_fixedsize()
94 …VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template bottomLeft… in corners_fixedsize()
Dcommainitializer.cpp30 VERIFY_IS_EQUAL((m_fixed.template bottomLeftCorner<M2,N1>()), mat21); in test_blocks()
Dgeo_homogeneous.cpp104 / ((t2.template bottomLeftCorner<1,Size>()*v0).value() + t2(Size,Size)) ); in homogeneous()
/external/eigen/doc/snippets/
DMatrixBase_bottomLeftCorner_int_int.cpp4 cout << m.bottomLeftCorner(2, 2) << endl;
5 m.bottomLeftCorner(2, 2).setZero();
DMatrixBase_template_int_int_bottomLeftCorner.cpp4 cout << m.bottomLeftCorner<2,2>() << endl;
5 m.bottomLeftCorner<2,2>().setZero();
DMatrixBase_template_int_int_bottomLeftCorner_int_int.cpp4 cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl;
5 m.bottomLeftCorner<2,Dynamic>(2,2).setZero();
DTutorial_AdvancedInitialization_ThreeWays.cpp5 mat1.bottomLeftCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
12 mat2.bottomLeftCorner(size/2, size/2).setIdentity();
/external/eigen/Eigen/src/plugins/
DBlockMethods.h348 inline BlockXpr bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() function
355 inline const ConstBlockXpr bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() function
373 inline typename FixedBlockXpr<CRows,CCols>::Type bottomLeftCorner() in bottomLeftCorner() function
381 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomLeftCorner() const in bottomLeftCorner() function
406 inline typename FixedBlockXpr<CRows,CCols>::Type bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() function
413 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type bottomLeftCorner(Index cRows, Index cCo… in bottomLeftCorner() function
/external/eigen/doc/
DTutorialBlockOperations.dox122 \link DenseBase::bottomLeftCorner() * \endlink</td>
124 matrix.bottomLeftCorner(p,q);\endcode </td>
126 matrix.bottomLeftCorner<p,q>();\endcode </td>
DAsciiQuickReference.txt78 P.bottomLeftCorner(rows, cols) // P(end-rows+1:end, 1:cols)
82 P.bottomLeftCorner<rows,cols>() // P(end-rows+1:end, 1:cols)
DA05_PortingFrom2To3.dox62 matrix.bottomLeftCorner(r,c)
66 matrix.bottomLeftCorner<r,c>()
DSparseQuickReference.dox193 sm1.bottomLeftCorner( rows, cols);
DQuickReference.dox554 mat1.bottomLeftCorner(rows,cols)
559 mat1.bottomLeftCorner<rows,cols>()
/external/eigen/Eigen/src/Eigenvalues/
DHessenbergDecomposition.h360 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();