MCPcopy Create free account
hub / github.com/dblalock/bolt / outerSize

Function outerSize

cpp/src/external/eigen/src/SparseCore/SparseMatrixBase.h:176–176  ·  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

174 /** \returns the size of the storage major dimension,
175 * i.e., the number of columns for a columns major matrix, and the number of rows otherwise */
176 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
177 /** \returns the size of the inner dimension according to the storage order,
178 * i.e., the number of rows for a columns major matrix, and the number of cols otherwise */
179 Index innerSize() const { return (int(Flags)&RowMajorBit) ? this->cols() : this->rows(); }

Callers 3

collapseDuplicatesMethod · 0.70
sumMethod · 0.70

Calls 2

rowsMethod · 0.45
colsMethod · 0.45

Tested by

no test coverage detected