Eigen dynamic matrix initialization

vPraetor picture vPraetor · Nov 6, 2013 · Viewed 14.5k times · Source

I am having some trouble figuring out how to set the rows and columns of a MatrixXd at runtime in Eigen. Can anyone point me to some documentation or give some pointer on how to do this?

Thanks.

Answer

Spiralwise picture Spiralwise · Jan 16, 2014

You can define a MatrixXd size at runtime by using the method resize(nrow, ncol). You can read more about resizing a dynamic matrix in this link and its API definition here.