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

  /external/eigen/doc/snippets/
MatrixBase_template_int_int_topRightCorner.cpp 3 cout << "Here is m.topRightCorner<2,2>():" << endl;
4 cout << m.topRightCorner<2,2>() << endl;
5 m.topRightCorner<2,2>().setZero();
MatrixBase_topRightCorner_int_int.cpp 3 cout << "Here is m.topRightCorner(2, 2):" << endl;
4 cout << m.topRightCorner(2, 2) << endl;
5 m.topRightCorner(2, 2).setZero();
Tutorial_AdvancedInitialization_ThreeWays.cpp 4 mat1.topRightCorner(size/2, size/2) = MatrixXd::Identity(size/2, size/2);
11 mat2.topRightCorner(size/2, size/2).setIdentity();
  /external/eigen/test/
corners.cpp 29 COMPARE_CORNER(topRightCorner(r,c), block(0,cols-c,r,c));
61 VERIFY_IS_EQUAL((matrix.template topRightCorner<r,c>()), (matrix.template block<r,c>(0,cols-c)));
73 VERIFY_IS_EQUAL((const_matrix.template topRightCorner<r,c>()), (const_matrix.template block<r,c>(0,cols-c)));
  /external/eigen/Eigen/src/plugins/
BlockMethods.h 78 inline Block<Derived> topRightCorner(Index cRows, Index cCols)
83 /** This is the const version of topRightCorner(Index, Index).*/
84 inline const Block<const Derived> topRightCorner(Index cRows, Index cCols) const
99 inline Block<Derived, CRows, CCols> topRightCorner()
104 /** This is the const version of topRightCorner<int, int>().*/
106 inline const Block<const Derived, CRows, CCols> topRightCorner() const
  /external/eigen/Eigen/src/LU/
FullPivLU.h 606 m.topRightCorner(rank(), dimker)
  /external/eigen/Eigen/src/Geometry/
Transform.h     [all...]

Completed in 590 milliseconds