Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/plugins/
DBlockMethods.h23 …def Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr; typedef
432 inline RowsBlockXpr topRows(Index n) in topRows()
434 return RowsBlockXpr(derived(), 0, 0, n, cols()); in topRows()
488 inline RowsBlockXpr bottomRows(Index n) in bottomRows()
490 return RowsBlockXpr(derived(), rows() - n, 0, n, cols()); in bottomRows()
545 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows()
547 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()