1MatrixXd m(3,4);
2m.resize(5, NoChange);
3cout << "m: " << m.rows() << " rows, " << m.cols() << " cols" << endl;
4