Home
last modified time | relevance | path

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

/external/eigen/Eigen/src/plugins/
DBlockMethods.h31 template<int N> struct ConstNRowsBlockXpr { typedef const Block<const Derived, N, internal::traits<… struct
412 inline typename ConstNRowsBlockXpr<N>::Type topRows(Index n = N) const
414 return typename ConstNRowsBlockXpr<N>::Type(derived(), 0, 0, n, cols());
460 inline typename ConstNRowsBlockXpr<N>::Type bottomRows(Index n = N) const
462 return typename ConstNRowsBlockXpr<N>::Type(derived(), rows() - n, 0, n, cols());
510 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N) const
512 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());