MCPcopy Create free account
hub / github.com/PX4/eigen / innerVectors

Method innerVectors

Eigen/src/SparseCore/SparseBlock.h:347–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

345 */
346template<typename Derived>
347typename SparseMatrixBase<Derived>::InnerVectorsReturnType
348SparseMatrixBase<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.

Callers 1

sparse_blockFunction · 0.80

Calls 2

rowsFunction · 0.50
colsFunction · 0.50

Tested by

no test coverage detected