/external/eigen/test/ |
D | corners.cpp | 30 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()
|
D | commainitializer.cpp | 30 VERIFY_IS_EQUAL((m_fixed.template bottomLeftCorner<M2,N1>()), mat21); in test_blocks()
|
D | geo_homogeneous.cpp | 104 / ((t2.template bottomLeftCorner<1,Size>()*v0).value() + t2(Size,Size)) ); in homogeneous()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_bottomLeftCorner_int_int.cpp | 4 cout << m.bottomLeftCorner(2, 2) << endl; 5 m.bottomLeftCorner(2, 2).setZero();
|
D | MatrixBase_template_int_int_bottomLeftCorner.cpp | 4 cout << m.bottomLeftCorner<2,2>() << endl; 5 m.bottomLeftCorner<2,2>().setZero();
|
D | MatrixBase_template_int_int_bottomLeftCorner_int_int.cpp | 4 cout << m.bottomLeftCorner<2,Dynamic>(2,2) << endl; 5 m.bottomLeftCorner<2,Dynamic>(2,2).setZero();
|
D | Tutorial_AdvancedInitialization_ThreeWays.cpp | 5 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/ |
D | BlockMethods.h | 348 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/ |
D | TutorialBlockOperations.dox | 122 \link DenseBase::bottomLeftCorner() * \endlink</td> 124 matrix.bottomLeftCorner(p,q);\endcode </td> 126 matrix.bottomLeftCorner<p,q>();\endcode </td>
|
D | AsciiQuickReference.txt | 78 P.bottomLeftCorner(rows, cols) // P(end-rows+1:end, 1:cols) 82 P.bottomLeftCorner<rows,cols>() // P(end-rows+1:end, 1:cols)
|
D | A05_PortingFrom2To3.dox | 62 matrix.bottomLeftCorner(r,c) 66 matrix.bottomLeftCorner<r,c>()
|
D | SparseQuickReference.dox | 193 sm1.bottomLeftCorner( rows, cols);
|
D | QuickReference.dox | 554 mat1.bottomLeftCorner(rows,cols) 559 mat1.bottomLeftCorner<rows,cols>()
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | HessenbergDecomposition.h | 360 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();
|