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

Method innerSize

Eigen/src/SparseCore/SparseMatrixBase.h:187–187  ·  view source on GitHub ↗

\returns the size of the inner dimension according to the storage order, * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */

Source from the content-addressed store, hash-verified

185 /** \returns the size of the inner dimension according to the storage order,
186 * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
187 Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); }
188
189 bool isRValue() const { return m_isRValue; }
190 Derived& markAsRValue() { m_isRValue = true; return derived(); }

Callers

nothing calls this directly

Calls 2

colsMethod · 0.95
rowsMethod · 0.95

Tested by

no test coverage detected