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

Method resize

Eigen/src/Core/TriangularMatrix.h:68–73  ·  view source on GitHub ↗

dummy resize function

Source from the content-addressed store, hash-verified

66
67 // dummy resize function
68 void resize(Index rows, Index cols)
69 {
70 EIGEN_UNUSED_VARIABLE(rows);
71 EIGEN_UNUSED_VARIABLE(cols);
72 eigen_assert(rows==this->rows() && cols==this->cols());
73 }
74
75 EIGEN_DEVICE_FUNC
76 inline Scalar coeff(Index row, Index col) const { return derived().coeff(row,col); }

Callers 3

evalToLazyMethod · 0.45
runMethod · 0.45

Calls 2

rowsMethod · 0.95
colsMethod · 0.95

Tested by

no test coverage detected