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

/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h33 template<int N> struct ConstNRowsBlockXpr { typedef const Block<const Derived, N, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> Type; }; struct
286 inline typename ConstNRowsBlockXpr<N>::Type topRows() const
288 return typename ConstNRowsBlockXpr<N>::Type(derived(), 0, 0, N, cols());
330 inline typename ConstNRowsBlockXpr<N>::Type bottomRows() const
332 return typename ConstNRowsBlockXpr<N>::Type(derived(), rows() - N, 0, N, cols());
376 inline typename ConstNRowsBlockXpr<N>::Type middleRows(Index startRow) const
378 return typename ConstNRowsBlockXpr<N>::Type(derived(), startRow, 0, N, cols());

Completed in 77 milliseconds