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

Method startVec

Eigen/src/SparseCore/SparseMatrix.h:412–417  ·  view source on GitHub ↗

\internal * \sa insertBack, insertBackByOuterInner */

Source from the content-addressed store, hash-verified

410 /** \internal
411 * \sa insertBack, insertBackByOuterInner */
412 inline void startVec(Index outer)
413 {
414 eigen_assert(m_outerIndex[outer]==Index(m_data.size()) && "You must call startVec for each inner vector sequentially");
415 eigen_assert(m_outerIndex[outer+1]==0 && "You must call startVec for each inner vector sequentially");
416 m_outerIndex[outer+1] = m_outerIndex[outer];
417 }
418
419 /** \internal
420 * Must be called after inserting a set of non zero entries using the low level compressed API.

Callers 5

factorizeMethod · 0.45
assign_sparse_to_sparseFunction · 0.45
factorizeMethod · 0.45
initSparseFunction · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected