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

/external/eigen/Eigen/src/plugins/
H A DBlockMethods.h30 template<int N> struct NRowsBlockXpr { typedef Block<Derived, N, internal::traits<Derived>::ColsAtCompileTime, IsRowMajor> Type; }; struct
405 inline typename NRowsBlockXpr<N>::Type topRows(Index n = N)
407 return typename NRowsBlockXpr<N>::Type(derived(), 0, 0, n, cols());
453 inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N)
455 return typename NRowsBlockXpr<N>::Type(derived(), rows() - n, 0, n, cols());
503 inline typename NRowsBlockXpr<N>::Type middleRows(Index startRow, Index n = N)
505 return typename NRowsBlockXpr<N>::Type(derived(), startRow, 0, n, cols());

Completed in 248 milliseconds