You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

5 lines
193 B

  1. MatrixXf a(2,2);
  2. std::cout << "a is of size " << a.rows() << "x" << a.cols() << std::endl;
  3. MatrixXf b(3,3);
  4. a = b;
  5. std::cout << "a is now of size " << a.rows() << "x" << a.cols() << std::endl;