/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()
|
/external/eigen/doc/snippets/ |
D | MatrixBase_template_int_int_bottomLeftCorner.cpp | 4 cout << m.bottomLeftCorner<2,2>() << endl; 5 m.bottomLeftCorner<2,2>().setZero();
|
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_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 | 306 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/ |
D | GMRES.h | 92 H.bottomLeftCorner(m - 1, 1) = e; in gmres() 190 H.bottomLeftCorner(m - 1, 1) = e; in gmres()
|
/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 | 76 P.bottomLeftCorner(rows, cols) // P(end-rows+1:end, 1:cols) 80 P.bottomLeftCorner<rows,cols>() // P(end-rows+1:end, 1:cols)
|
D | A05_PortingFrom2To3.dox | 67 matrix.bottomLeftCorner(r,c) 71 matrix.bottomLeftCorner<r,c>()
|
D | SparseQuickReference.dox | 193 sm1.bottomLeftCorner( rows, cols);
|
D | QuickReference.dox | 496 mat1.bottomLeftCorner(rows,cols) 501 mat1.bottomLeftCorner<rows,cols>()
|
/external/ceres-solver/internal/ceres/ |
D | dense_sparse_matrix.cc | 118 m_.bottomLeftCorner(m_.cols(), m_.cols()) = in AppendDiagonal()
|
/external/eigen/Eigen/src/Eigenvalues/ |
D | HessenbergDecomposition.h | 359 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();
|