Home | History | Annotate | Download | only in plugins

Lines Matching full:ncols

762 /// The template parameters \a NRows and \a NCols are the number of
778 template<int NRows, int NCols>
780 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol)
782 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol);
786 template<int NRows, int NCols>
788 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol) const
790 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol);
796 /// \tparam NCols number of columns in block as specified at compile-time
814 template<int NRows, int NCols>
815 inline typename FixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol,
818 return typename FixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);
822 template<int NRows, int NCols>
823 inline const typename ConstFixedBlockXpr<NRows,NCols>::Type block(Index startRow, Index startCol,
826 return typename ConstFixedBlockXpr<NRows,NCols>::Type(derived(), startRow, startCol, blockRows, blockCols);