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 156 inline Block<Derived> topLeftCorner(Index cRows, Index cCols)
161 /** This is the const version of topLeftCorner(Index, Index).*/
162 inline const Block<const Derived> topLeftCorner(Index cRows, Index cCols) const
177 inline Block<Derived, CRows, CCols> topLeftCorner()
182 /** This is the const version of topLeftCorner<int, int>().*/
184 inline const Block<const Derived, CRows, CCols> topLeftCorner() const
207 inline Block<Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols)
212 /** This is the const version of topLeftCorner<int, int>(Index, Index).*/
214 inline const Block<const Derived, CRows, CCols> topLeftCorner(Index cRows, Index cCols) const
    [all...]

Completed in 74 milliseconds