Home | History | Annotate | Download | only in plugins

Lines Matching refs:startCol

41   * \param startCol the first column in the block
54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols)
56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols);
60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols);
473 * \param startCol the index of the first column in the block
481 inline ColsBlockXpr middleCols(Index startCol, Index numCols)
483 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols);
487 startCol, Index numCols) const
489 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols);
495 * \param startCol the index of the first column in the block
503 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol)
505 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N);
510 inline typename ConstNColsBlockXpr<N>::Type middleCols(Index startCol) const
512 return typename ConstNColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N);
523 * \param startCol the first column in the block
534 inline Block<Derived, BlockRows, BlockCols> block(Index startRow, Index startCol)
536 return Block<Derived, BlockRows, BlockCols>(derived(), startRow, startCol);
541 inline const Block<const Derived, BlockRows, BlockCols> block(Index startRow, Index startCol) const
543 return Block<const Derived, BlockRows, BlockCols>(derived(), startRow, startCol);