cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Matrix_resize_NoChange_int.cpp (111B)


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