Searched refs:RowsBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 24 …def Block<Derived, Dynamic, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> RowsBlockXpr; typedef 380 inline RowsBlockXpr topRows(Index n) in topRows() 382 return RowsBlockXpr(derived(), 0, 0, n, cols()); in topRows() 428 inline RowsBlockXpr bottomRows(Index n) in bottomRows() 430 return RowsBlockXpr(derived(), rows() - n, 0, n, cols()); in bottomRows() 477 inline RowsBlockXpr middleRows(Index startRow, Index n) in middleRows() 479 return RowsBlockXpr(derived(), startRow, 0, n, cols()); in middleRows()
|