Searched refs:ConstRowsBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 25 …onst Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> ConstRowsBlockXpr; typedef 386 inline ConstRowsBlockXpr topRows(Index n) const in topRows() 388 return ConstRowsBlockXpr(derived(), 0, 0, n, cols()); in topRows() 434 inline ConstRowsBlockXpr bottomRows(Index n) const in bottomRows() 436 return ConstRowsBlockXpr(derived(), rows() - n, 0, n, cols()); in bottomRows() 483 inline ConstRowsBlockXpr middleRows(Index startRow, Index n) const in middleRows() 485 return ConstRowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
|