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

Method outerSize

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

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

Source from the content-addressed store, hash-verified

182 /** \returns the size of the storage major dimension,
183 * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
184 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
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(); }

Callers 1

SparseMatrixBaseClass · 0.45

Calls 2

rowsMethod · 0.95
colsMethod · 0.95

Tested by

no test coverage detected