| 514 | /// |
| 515 | template<int N> |
| 516 | EIGEN_DEVICE_FUNC |
| 517 | inline typename NRowsBlockXpr<N>::Type bottomRows(Index n = N) |
| 518 | { |
| 519 | return typename NRowsBlockXpr<N>::Type(derived(), rows() - n, 0, n, cols()); |
| 520 | } |
| 521 | |
| 522 | /// This is the const version of bottomRows<int>(). |
| 523 | template<int N> |
no test coverage detected