Home | History | Annotate | Download | only in plugins

Lines Matching refs:blockCols

50 /// \param blockCols the number of columns in the block
64 inline BlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols)
66 return BlockXpr(derived(), startRow, startCol, blockRows, blockCols);
71 inline const ConstBlockXpr block(Index startRow, Index startCol, Index blockRows, Index blockCols) const
73 return ConstBlockXpr(derived(), startRow, startCol, blockRows, blockCols);
800 /// \param blockCols number of columns in block as specified at run-time
816 Index blockRows, Index blockCols)
818 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);
824 Index blockRows, Index blockCols) const
826 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);