D | BlockMethods.h | 54 inline Block<Derived> block(Index startRow, Index startCol, Index blockRows, Index blockCols) in block() argument 56 return Block<Derived>(derived(), startRow, startCol, blockRows, blockCols); in block() 60 inline const Block<const Derived> block(Index startRow, Index startCol, Index blockRows, Index bloc… in block() argument 62 return Block<const Derived>(derived(), startRow, startCol, blockRows, blockCols); in block() 481 inline ColsBlockXpr middleCols(Index startCol, Index numCols) in middleCols() argument 483 return ColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols() 487 inline ConstColsBlockXpr middleCols(Index startCol, Index numCols) const in middleCols() argument 489 return ConstColsBlockXpr(derived(), 0, startCol, rows(), numCols); in middleCols() 503 inline typename NColsBlockXpr<N>::Type middleCols(Index startCol) in middleCols() argument 505 return typename NColsBlockXpr<N>::Type(derived(), 0, startCol, rows(), N); in middleCols() [all …]
|