| 345 | */ |
| 346 | template<typename Derived> |
| 347 | typename SparseMatrixBase<Derived>::InnerVectorsReturnType |
| 348 | SparseMatrixBase<Derived>::innerVectors(Index outerStart, Index outerSize) |
| 349 | { |
| 350 | return Block<Derived,Dynamic,Dynamic,true>(derived(), |
| 351 | IsRowMajor ? outerStart : 0, IsRowMajor ? 0 : outerStart, |
| 352 | IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize); |
| 353 | |
| 354 | } |
| 355 | |
| 356 | /** \returns the \a outer -th column (resp. row) of the matrix \c *this if \c *this |
| 357 | * is col-major (resp. row-major). Read-only. |
no test coverage detected