Home
last modified time | relevance | path

Searched refs:ConstRowsBlockXpr (Results 1 – 1 of 1) sorted by relevance

/external/eigen/Eigen/src/plugins/
DBlockMethods.h24 …onst Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXpr; typedef
439 inline ConstRowsBlockXpr topRows(Index n) const in topRows()
441 return ConstRowsBlockXpr(derived(), 0, 0, n, cols()); in topRows()
495 inline ConstRowsBlockXpr bottomRows(Index n) const in bottomRows()
497 return ConstRowsBlockXpr(derived(), rows() - n, 0, n, cols()); in bottomRows()
552 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows()
554 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()