Searched refs:NRowsBlockXpr (Results 1 – 1 of 1) sorted by relevance
/external/eigen/Eigen/src/plugins/ |
D | BlockMethods.h | 29 template<int N> struct NRowsBlockXpr { typedef Block<Derived, N, internal::traits<Derived>::ColsAtC… argument 461 inline typename NRowsBlockXpr<N>::Type topRows(Index n = N) 463 return typename NRowsBlockXpr<N>::Type(derived(), 0, 0, n, cols()); 517 inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N) 519 return typename NRowsBlockXpr<N>::Type(derived(), rows() - n, 0, n, cols()); 575 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) 577 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());
|