HomeSort by relevance Sort by last modified time
    Searched defs:topLeftCorner (Results 1 - 2 of 2) sorted by null

  /external/eigen/doc/examples/
class_Block.cpp 8 topLeftCorner(MatrixBase<Derived>& m, int rows, int cols)
15 topLeftCorner(const MatrixBase<Derived>& m, int rows, int cols)
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/
BlockMethods.h 178 inline BlockXpr topLeftCorner(Index cRows, Index cCols)
183 /// This is the const version of topLeftCorner(Index, Index).
185 inline const ConstBlockXpr topLeftCorner(Index cRows, Index cCols) const
203 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner()
208 /// This is the const version of topLeftCorner<int, int>().
211 inline const typename ConstFixedBlockXpr<CRows,CCols>::Type topLeftCorner() const
236 inline typename FixedBlockXpr<CRows,CCols>::Type topLeftCorner(Index cRows, Index cCols)
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
    [all...]

Completed in 1013 milliseconds