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

Method coeff

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

Source from the content-addressed store, hash-verified

179 return m_spblockmat.blockRows();
180 }
181 inline Scalar coeff(Index bi) const
182 {
183 Index startRow = m_spblockmat.blockRowsIndex(bi);
184 Index rowSize = m_spblockmat.blockRowsIndex(bi+1) - startRow;
185 return m_vec.middleRows(startRow, rowSize);
186 }
187 inline Scalar coeff(Index bi, Index j) const
188 {
189 Index startRow = m_spblockmat.blockRowsIndex(bi);

Calls 1

blockRowsIndexMethod · 0.80

Tested by

no test coverage detected