HomeSort by relevance Sort by last modified time
    Searched refs:bottomLeftCorner (Results 1 - 8 of 8) sorted by null

  /external/eigen/doc/snippets/
MatrixBase_bottomLeftCorner_int_int.cpp 3 cout << "Here is m.bottomLeftCorner(2, 2):" << endl;
4 cout << m.bottomLeftCorner(2, 2) << endl;
5 m.bottomLeftCorner(2, 2).setZero();
MatrixBase_template_int_int_bottomLeftCorner.cpp 3 cout << "Here is m.bottomLeftCorner<2,2>():" << endl;
4 cout << m.bottomLeftCorner<2,2>() << endl;
5 m.bottomLeftCorner<2,2>().setZero();
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/test/
corners.cpp 30 COMPARE_CORNER(bottomLeftCorner(r,c), block(rows-r,0,r,c));
62 VERIFY_IS_EQUAL((matrix.template bottomLeftCorner<r,c>()), (matrix.template block<r,c>(rows-r,0)));
74 VERIFY_IS_EQUAL((const_matrix.template bottomLeftCorner<r,c>()), (const_matrix.template block<r,c>(rows-r,0)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 214 inline Block<Derived> bottomLeftCorner(Index cRows, Index cCols)
219 /** This is the const version of bottomLeftCorner(Index, Index).*/
220 inline const Block<const Derived> bottomLeftCorner(Index cRows, Index cCols) const
235 inline Block<Derived, CRows, CCols> bottomLeftCorner()
240 /** This is the const version of bottomLeftCorner<int, int>().*/
242 inline const Block<const Derived, CRows, CCols> bottomLeftCorner() const
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 359 result.bottomLeftCorner(n-2, n-2).template triangularView<Lower>().setZero();
  /external/eigen/unsupported/Eigen/src/IterativeSolvers/
GMRES.h 89 H.bottomLeftCorner(m - 1, 1) = e;
187 H.bottomLeftCorner(m - 1, 1) = e;
  /external/ceres-solver/internal/ceres/
dense_sparse_matrix.cc 149 m_.bottomLeftCorner(m_.cols(), m_.cols()) =

Completed in 648 milliseconds