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

Method coeffRef

unsupported/Eigen/src/SparseExtra/BlockSparseMatrix.h:221–226  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

219 return m_spblockmat.blockRows();
220 }
221 inline Scalar coeffRef(Index bi)
222 {
223 Index startRow = m_spblockmat.blockRowsIndex(bi);
224 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
225 return m_vec.middleRows(startRow, rowSize);
226 }
227 inline Scalar coeffRef(Index bi, Index j)
228 {
229 Index startRow = m_spblockmat.blockRowsIndex(bi);

Callers 2

coeffRefMethod · 0.45
solveMethod · 0.45

Calls 1

blockRowsIndexMethod · 0.80

Tested by

no test coverage detected