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()
/external/eigen/doc/snippets/
DMatrixBase_template_int_int_bottomLeftCorner.cpp4 cout << m.bottomLeftCorner<2,2>() << endl;
5 m.bottomLeftCorner<2,2>().setZero();
DMatrixBase_bottomLeftCorner_int_int.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.h306 inline Block<Derived> bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() function
312 inline const Block<const Derived> bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() function
327 inline Block<Derived, CRows, CCols> bottomLeftCorner() in bottomLeftCorner() function
334 inline const Block<const Derived, CRows, CCols> bottomLeftCorner() const in bottomLeftCorner() function
357 inline Block<Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) in bottomLeftCorner() function
364 inline const Block<const Derived, CRows, CCols> bottomLeftCorner(Index cRows, Index cCols) const in bottomLeftCorner() function
/external/eigen/unsupported/Eigen/src/IterativeSolvers/
DGMRES.h92 H.bottomLeftCorner(m - 1, 1) = e; in gmres()
190 H.bottomLeftCorner(m - 1, 1) = e; in gmres()
/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.txt76 P.bottomLeftCorner(rows, cols) // P(end-rows+1:end, 1:cols)
80 P.bottomLeftCorner<rows,cols>() // P(end-rows+1:end, 1:cols)
DA05_PortingFrom2To3.dox67 matrix.bottomLeftCorner(r,c)
71 matrix.bottomLeftCorner<r,c>()
DSparseQuickReference.dox193 sm1.bottomLeftCorner( rows, cols);
DQuickReference.dox496 mat1.bottomLeftCorner(rows,cols)
501 mat1.bottomLeftCorner<rows,cols>()
/external/ceres-solver/internal/ceres/
Ddense_sparse_matrix.cc118 m_.bottomLeftCorner(m_.cols(), m_.cols()) = in AppendDiagonal()
/external/eigen/Eigen/src/Eigenvalues/
DHessenbergDecomposition.h359 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();