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

Method startRow

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

Source from the content-addressed store, hash-verified

269 inline const SparseMatrixType& nestedExpression() const { return m_matrix; }
270 inline SparseMatrixType& nestedExpression() { return m_matrix; }
271 Index startRow() const { return IsRowMajor ? m_outerStart : 0; }
272 Index startCol() const { return IsRowMajor ? 0 : m_outerStart; }
273 Index blockRows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); }
274 Index blockCols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); }

Calls

no outgoing calls

Tested by

no test coverage detected