MCPcopy Create free account
hub / github.com/TheRealMJP/BakingLab / SparseMatrix

Function SparseMatrix

Externals/eigen/Eigen/src/SparseCore/SparseMatrix.h:629–634  ·  view source on GitHub ↗

Default constructor yielding an empty \c 0 \c x \c 0 matrix */

Source from the content-addressed store, hash-verified

627
628 /** Default constructor yielding an empty \c 0 \c x \c 0 matrix */
629 inline SparseMatrix()
630 : m_outerSize(-1), m_innerSize(0), m_outerIndex(0), m_innerNonZeros(0)
631 {
632 check_template_parameters();
633 resize(0, 0);
634 }
635
636 /** Constructs a \a rows \c x \a cols empty matrix */
637 inline SparseMatrix(Index rows, Index cols)

Callers

nothing calls this directly

Calls 4

initAssignmentFunction · 0.85
resizeFunction · 0.70
evalToMethod · 0.45

Tested by

no test coverage detected