Searched defs:topLeftCorner (Results 1 - 2 of 2) sorted by relevance

/external/eigen/doc/examples/
H A Dclass_Block.cpp8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols) function
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols) function
23 cout << topLeftCorner(4*m, 2, 3) << endl; // calls the const version
24 topLeftCorner(m, 2, 3) *= 5; // calls the non-const version
/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h178 inline BlockXpr topLeftCorner(Index cRows, Index cCols) function
183 /// This is the const version of topLeftCorner(Index, Index).
185 inline const ConstBlockXpr topLeftCorner(Index cRows, Index cCols) const function
203 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner() function
208 /// This is the const version of topLeftCorner<int, int>().
211 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topLeftCorner() const function
236 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols) function
241 /// This is the const version of topLeftCorner<int, int>(Index, Index).
243 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols) const function

Completed in 498 milliseconds