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 124 inline Block<Derived> topLeftCorner(Index cRows, Index cCols)
129 /** This is the const version of topLeftCorner(Index, Index).*/
130 inline const Block<const Derived> topLeftCorner(Index cRows, Index cCols) const
145 inline Block<Derived, CRows, CCols> topLeftCorner()
150 /** This is the const version of topLeftCorner<int, int>().*/
152 inline const Block<const Derived, CRows, CCols> topLeftCorner() const

Completed in 788 milliseconds