Lines Matching full:startcol
43 * \param startCol the first column in the block
56 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
58 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols);
62 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
64 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
615 * \param startCol the index of the first column in the block
623 inline ColsBlockXpr middleCols(Index startCol, Index numCols)
625 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
629 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const
631 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols);
637 * \param startCol the index of the first column in the block
649 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N)
651 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
656 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol, Index n = N) const
658 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), n);
669 * \param startCol the first column in the block
680 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol)
682 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
687 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const
689 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
697 * \param startCol the first column in the block
712 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol,
715 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);
720 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol,
723 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol, blockRows, blockCols);